命令詳解:tee(轉)
命令詳解:tee(轉)[@more@] 功能說明:讀取標準輸入的資料,並將其內容輸出成檔案。
語 法:tee [-ai][--help][--version][檔案…]
補充說明:tee指令會從標準輸入裝置讀取資料,將其內容輸出到標準輸出裝置,同時儲存成檔案。我們可利用tee把管道匯入的資料存成檔案,甚至一次儲存數份檔案。
參 數:-a 附加到既有檔案的後面,而非覆蓋它。如果給予tee指令的檔名稱已經存在,預設會覆蓋該檔案的內容。加上此引數後,資料會新增在該檔案內容的最後面,而不會刪除原先之內容。
-i 忽略中斷訊號
--help 線上幫助
--version 顯示版本資訊
範 例:
列出文字檔案slayers.story的內容,同時複製3份副本,檔名稱分別為ss-copy1、ss-copy2、ss-copy3:
$ cat slayers.story |tee ss-copy1 ss-copy2 ss-copy3
語 法:tee [-ai][--help][--version][檔案…]
補充說明:tee指令會從標準輸入裝置讀取資料,將其內容輸出到標準輸出裝置,同時儲存成檔案。我們可利用tee把管道匯入的資料存成檔案,甚至一次儲存數份檔案。
參 數:-a 附加到既有檔案的後面,而非覆蓋它。如果給予tee指令的檔名稱已經存在,預設會覆蓋該檔案的內容。加上此引數後,資料會新增在該檔案內容的最後面,而不會刪除原先之內容。
-i 忽略中斷訊號
--help 線上幫助
--version 顯示版本資訊
範 例:
列出文字檔案slayers.story的內容,同時複製3份副本,檔名稱分別為ss-copy1、ss-copy2、ss-copy3:
$ cat slayers.story |tee ss-copy1 ss-copy2 ss-copy3
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617542/viewspace-948687/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- tee 命令
- windows tee命令Windows
- vi命令詳解(轉)
- SVN命令詳解【轉】
- Tee命令使用例項
- 【轉】linux-命令top詳解Linux
- Tee命令的幾個使用例項
- Linux基礎命令---文字編輯teeLinux
- FFmpeg命令影片音訊轉碼引數詳解音訊
- tee
- `find` 命令詳解
- w命令詳解
- getsebool命令詳解
- netstat命令詳解
- Linux at命令詳解Linux
- tcpdump命令詳解TCP
- GCC命令詳解GC
- Dockerfile 命令詳解Docker
- NPM命令詳解NPM
- echo命令詳解
- Linuxtcpdump命令詳解LinuxTCP
- Linux sort 命令詳解Linux
- Linux xattr 命令詳解Linux
- Linux locate 命令詳解Linux
- Linux firewalld 命令詳解Linux
- Linux iptables 命令詳解Linux
- Linux netstat 命令詳解Linux
- Linux history 命令詳解Linux
- Linux sed 命令詳解Linux
- Linux awk 命令詳解Linux
- Linux ss 命令詳解Linux
- Linux nc 命令詳解Linux
- git remote 命令詳解GitREM
- Git 命令大全,詳解!Git
- linux top命令詳解Linux
- git checkout 命令詳解Git
- 詳解Linux chkconfig命令Linux
- Linux diff命令詳解Linux
- MySQL explain命令詳解MySqlAI