Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

script to record terminal on Mac

Tags:

terminal

macos

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?

like image 929
RNA Avatar asked Jul 30 '13 08:07

RNA


2 Answers

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).

  • ttyrec: Official website
  • shelr.tv: YouTube for terminal recordings
  • ttygif: Converts terminal recordings to animated GIFs
like image 186
Michael Wales Avatar answered Nov 15 '22 05:11

Michael Wales


The scriptversion 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.

like image 38
geon Avatar answered Nov 15 '22 07:11

geon