码迷,mamicode.com
首页 > 系统相关 > 详细

Linux命令之乐--script和scriptplay

时间:2016-08-23 01:25:01      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

script和scriptplay可以把终端会话记录到一个文件中,可以用来制作命令行教学视屏。

 

开始录制会话

[root@new test]# script -t 2>timing.log -a output.session
Script started, file is output.session
[root@new test]# echo hello
hello
[root@new test]# echo world
world
[root@new test]# pwd
/test
[root@new test]# exit
exit
Script done, file is output.session

 

回放会话

[root@new test]# scriptreplay timing.log output.session 
[root@new test]# echo hello
hello
[root@new test]# echo world
world
[root@new test]# pwd
/test

 

Linux命令之乐--script和scriptplay

标签:

原文地址:http://www.cnblogs.com/zydev/p/5797736.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!