linux系統中,tee命令的使用


需求描述:

  今天在看nginx內容的過程,遇到了tee這個命令,所以查詢了下,在這里記錄下使用方法.

操作過程:

1.執行以下的命令

[root@testvm ~]# uname -n | tee hostInfo
testvm
[root@testvm ~]# cat hostInfo 
testvm

備注:通過以上的執行可以知道,tee命令是從標准輸入讀取內容,然后將讀取到的內容寫到標准輸出和指定的文件.所以,在屏幕中出現了uname -n的結果,文件中也存有該信息.

 2.tee命令的使用方法

Usage: tee [OPTION]... [FILE]...
Copy standard input to each FILE, and also to standard output.

  -a, --append              append to the given FILEs, do not overwrite
  -i, --ignore-interrupts   ignore interrupt signals
      --help     display this help and exit
      --version  output version information and exit

If a FILE is -, copy again to standard output.

Report tee bugs to bug-coreutils@gnu.org
GNU coreutils home page: <http://www.gnu.org/software/coreutils/>
General help using GNU software: <http://www.gnu.org/gethelp/>
For complete documentation, run: info coreutils 'tee invocation'

 

小結:

  tee命令的作用將輸入的內容寫入到屏幕和文件,輸入屏幕的作用是查看,前面命令的執行結果是否是自己想要的.

 

文檔創建時間:2018年4月24日10:38:01


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM