回覆列表
-
1 # 指尖上的青春Guitar
-
2 # 蒙D35777
在linux終端下,為方便檢查操作中可能出現的錯誤,以及避免螢幕滾屏的限制,我們可以把操作日誌記錄下來。常用的工具有screen,script,以及tee等。
1。 screen — screen manager with VT100/ANSI terminal emulatio
> screen -L
>這裡是我們的操作
> exit
結束後會生成一個類似這樣的檔名: screenlog。
0
> more screenlog。0
這樣可以檢視你剛才進行的操作,發現可能存在的問題
2。 script — make typescript of terminal session
> script
>我們的操作
> exit
生成一個這樣的檔案:typescript
> more typescript
這裡檢視我們進行的操作
3。
tee – read from standard input and write to standard output and files
這個命令可以讀取終端輸入輸出到終端或者檔案中,有時候可以用來記錄make等命令可能產生的輸出到終端的大量內容輸出到檔案中去。
這樣可以方便記錄這些命令的日誌。
> make 2>&1 | tee make。log
當然,我們也可以直接重定向到一個檔案中
> make > make。log
PS: 2>&1是為了記錄錯誤日誌
if you want to filter the control symbols, try to use the “col” command like this:
$ cat screenlog。
0 | col -b > screenlog
or
$ cat typescript | col -b > scriptlog。
“控制面板→管理工具”中找到的“事件檢視器”也可以在“執行”對話方塊中手工鍵入“%SystemRoot%\system32\eventvwr.msc /s”開啟事件檢視器視窗