标签: shell
如何一次将数据插入文件?
考虑我是否有以下数据:
echo "hi" >> file1 echo "hi" >> file2
如何将同一个“hi”同时重定向到file1和file2?
答案 0 :(得分:10)
$ echo hi | tee -a file1 file2
请参阅the tee manpage。
tee