script
is a great tool to record all activities in terminal(http://linuxers.org/article/script-command-line-tool-recordsave-your-terminal-activity). The builtin script
executable on Mac is not able to record the timing of the typescript. I am trying to compile the package util-linux (https://github.com/karelzak/util-linux, which contains linux version script
) but without success:
$ make
make all-recursive
Making all in po
make[2]: Nothing to be done for `all'.
CC lib/libcommon_la-strutils.lo
In file included from lib/strutils.c:16:
./include/strutils.h:77: error: conflicting types for 'strmode'
/usr/include/string.h:168: error: previous declaration of 'strmode' was here
lib/strutils.c:351: error: conflicting types for 'strmode'
/usr/include/string.h:168: error: previous declaration of 'strmode' was here
lib/strutils.c: In function 'size_to_human_string':
lib/strutils.c:442: warning: format '%jd' expects type 'intmax_t', but argument 8 has type 'uint64_t'
make[2]: *** [lib/libcommon_la-strutils.lo] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
Is there any compiled excutable out there for Mac?
ttyrec
includes a fix for the timing issue and, for all intents and purposes, serves the same function (described as a derivative of script
in its manpage). It's available via brew (brew install ttyrec
) or MacPorts (sudo port install ttyrec
).
The script
version on OS X has the -r
option, which will record all input, output and timings in a single file. it can be replayed using the -p
option.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With