linux tee 命令詳解
功能說明:讀取標準輸入的資料,並將其內容輸出成檔案。
語 法:tee [-ai][--help][--version][檔案...]
補充說明:tee指令會從標準輸入裝置讀取資料,將其內容輸出到標準輸出裝置,同時儲存成檔案。
[root@localhost ~]# who | tee who.out
root pts/0 2009-02-17 07:47 (123.123.123.123)
[root@localhost ~]# cat who.out
root pts/0 2009-02-17 07:47 (123.123.123.123)
[root@localhost ~]# pwd | tee -a who.out
/root
[root@localhost ~]# cat who.out
root pts/0 2009-02-17 07:47 (123.123.123.123)
/root
[root@localhost ~]#
Linux tee命令簡介
linux tee命令簡介 1 tee file 將標準輸入覆蓋寫入到file中,同時在退出時再列印一遍 2 tee a file 同上,只不過時追加不是覆蓋 3 tee 輸出到標準輸出兩次 4 tee 輸出到標準輸出三次 5 tee file1 file2 輸出到標準輸出兩次,並寫到那兩個檔案中 ...
Linux tee 讀取標準輸入流命令
摘要1 摘要2 linux tee命令用於讀取標準輸入的資料,並將其內容輸出成檔案。tee指令會從標準輸入裝置讀取資料,將其內容輸出到標準輸出裝置,同時儲存成檔案。tee ai help version 檔案.引數 i或 ignore interrupts 忽略中斷訊號。version 顯示版本資訊...
Linux tee 的使用小結
linux tee 命令用於讀取標準輸入的資料,並將其內容輸出成檔案。tee 指令會從標準輸入裝置讀取資料,將其內容輸出到標準輸出裝置,同時儲存成檔案。我們多用來進行日誌的儲存。用下面的 test.sh 可執行檔案來進行演示。root localhost cat test.sh usr bin ba...