6

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 编译的可执行文件?

4

4 回答 4

7

ttyrec包括对时间问题的修复,并且出于所有意图和目的,提供相同的功能(script在其手册页中描述为的派生词)。它可以通过 brew ( brew install ttyrec) 或 MacPorts ( sudo port install ttyrec) 获得。

  • ttyrec : 官方网站
  • shelr.tv : 用于终端录音的 YouTube
  • ttygif:将终端记录转换为动画 GIF
于 2013-08-17T21:08:06.410 回答
6

scriptOS X 上的版本有一个-r选项,它将所有输入、输出和时间记录在一个文件中。可以使用该-p选项重播。

于 2016-05-06T09:01:31.270 回答
3

以防万一其他人在这里偶然发现如何在 MacOS 上重放使用 util-linux 版本录制的脚本script,您可能会发现这很有用:

https://bitbucket.org/rewbs/docker-scriptreplay

它只是一个非常简单的基于 Alpine Linux 的 Docker 映像,使您能够scriptreplay在 MacOS 上运行(通过 Docker)。我发现这对于确保广大 Mac 用户可以使用标准工具重播 Linux 服务器上记录的脚本很有用。希望其他人觉得这很有用!:)

于 2017-06-12T01:33:54.860 回答
0

我正在尝试编译包 util-linux (https://github.com/karelzak/util-linux,其中包含 linux 版本脚本)但没有成功:

来自编译器的关于“不兼容类型”的错误消息是它失败的线索。util-linux驻留在 OS X(基于 BSD)上的系统头文件中的声明与来自(基于 GNU/Linux)的包含文件中的声明之间存在冲突。

于 2013-08-03T10:58:50.543 回答