2012-05-28 61 views
3

我有一個shell腳本來查詢一些數據..我想將結果打印到一個文件中,但是這樣做會阻止終端上顯示結果。有沒有辦法可以在屏幕上打印結果並寫入文件。 在此先感謝。在終端上打印並同時輸入文件?

回答

11

管你的輸出到tee命令。

實施例:

[[email protected]]$ echo hello | tee out.txt 
hello 
[[email protected]]$ cat out.txt 
hello 

注意的echo標準輸出被打印出來,以及寫入到由THR tee命令指定的文件。

+0

非常感謝你 – Xander

+0

@Xander歡迎您。 –

相關問題