Io-Redirection

使用 cat 或 echo 將相同的文本附加到許多文件?

  • October 6, 2012

如何通過使用catecho僅在一個命令中將相同的內容寫入多個文本文件?

例如,我想向 file1 和 file2 寫入“hello”。我試過了:

echo "hello" >> file1 file2

但它沒有用。我該怎麼做?

用於tee從標準輸入讀取並寫入標準輸出和文件。

echo "hello" | tee -a file1 file2

-a是 GNU tee 的簡短(和可移植/標準)--append

引用自:https://unix.stackexchange.com/questions/50089