[20140922]scriptreplay的使用.txt

lfree發表於2014-09-22

[20140922]scriptreplay的使用.txt

--今天在使用命令不全的時候發現系統存在一個scriptreplay的命令,從命令名字上看是執行命令的回顯.
--檢視man scriptreplay文件,發現裡面有一個例子,簡單的測試看看.
--注意:我使用的是centos 6.2,好像centos4.X的版本還沒有這個命令.

EXAMPLE
        % script -t 2> timingfile
        Script started, file is typescript
        % ls
       
        % exit
        Script done, file is typescript
        % scriptreplay timingfile

--注意這樣執行的內容放在typescript裡面.自己做簡單的測試:

$script -t 2> timingfile
...
執行一些命令,然後是退出.
...

$ scriptreplay timingfile

--這樣就可以回顯執行的過程,很有意思.


--進一步提高,可以指定記錄檔案使用-a選項.

$ script -t 2> timingfile.log -a output.session
Script started, file is output.session
...
執行一些命令,然後是退出.
...

$ scriptreplay timingfile.log output.session 2

--If the third parameter is specified, it is used as a speed-up multiplier. For example, a speed-up of 2 makes
--scriptreplay go twice as fast and a speed-up of 0.1 makes it go ten times slower than the original session.

--後面的引數可以起到一定的加速作用.設定小於1可以實現減速的功能.
--這樣可以滿足一些公司做一些重要操作時,保留操作步驟的需要.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-1276764/,如需轉載,請註明出處,否則將追究法律責任。

相關文章