如何在putty上完全記錄操作linux的日誌_script_tee_screen

wisdomone1發表於2013-05-02

1,screen -L   相當操作

   exit

    more 當前目錄/screenlog.0

2,script. /zxy.log

   相關操作

   exit

3,tee-- read from standard input and write to standard output and files

這個命令可以讀取終端輸入輸出到終端或者檔案中,有時候可以用來記錄make等命令可能產生的輸出到終端的大量內容輸出到檔案中去。這樣可以方便記錄這些命令的日誌。

> make 2>&1 | tee make.log
當然,我們也可以直接重定向到一個檔案中
> make > make.log

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

相關文章