script
是记录终端中所有活动的好工具(http://linuxers.org/article/script-command-line-tool-recordsave-your-terminal-activity)。Mac 上的内置script
可执行文件无法记录打字稿的时间。我正在尝试编译包 util-linux (https://github.com/karelzak/util-linux,其中包含 linux 版本script
)但没有成功:
$ 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
有没有为 Mac 编译的可执行文件?