如何将ls / tmp命令重定向到多个文件
即,输出需要在ls / tmp> a.txt和b.txt
答案 0 :(得分:6)
使用tee
:
# This way you will see the output.
ls /tmp | tee file1.txt file2.txt
# With this line you won't.
ls /tmp | tee file1.txt file2.txt >/dev/null
答案 1 :(得分:3)
您可以使用tee ls /tmp | tee -a a.txt b.txt
编辑:好吧DarkDust战争更快:))
答案 2 :(得分:1)
除了其他建议的方法之外:您还可以在执行ls后cp输出文件。