Linux

shell腳本+在腳本PATH中添加標準輸出

  • January 11, 2012

通常,如果我們想將腳本輸出重定向到文件,我們只需執行

  /etc/create_connection.sh > file.debug.txt  

或者

  /etc/create_connection.sh | tee –a  file.debug.txt  

但我想要的是在腳本中添加 /etc/create_connection.sh > file.debug.txt ,但我不確定它是否可能以及如何?

所以當我跑的時候

 /etc/create_connection.sh 

我需要所有標準輸出都寫入 file.debug.txt

那麼我需要在我的腳本中添加什麼才能做到這一點?

一開始就簡單寫exec > file.debug.txt

連結: http: //www.faqs.org/docs/abs/HTML/io-redirection.html

引用自:https://serverfault.com/questions/348744