gpt4 book ai didi

linux - 输出内容到两个不同的文件

转载 作者:太空狗 更新时间:2023-10-29 11:25:24 24 4
gpt4 key购买 nike

如何将 ls/tmp 命令的输出重定向到多个文件

即,输出需要在 ls/tmp > a.txt 和 b.txt 上

最佳答案

使用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

关于linux - 输出内容到两个不同的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9515348/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com