将 stdout 重定向到一个文件,将 stderr 重定向到另一个文件

将 stdout 重定向到一个文件,将 stderr 重定向到另一个文件

用于find编译中的所有目录列表/proc,重定向输出,以便目录列表最终出现在名为的文件中directories.txt,而错误消息列表最终出现在名为的文件中errors.txt

我对“使用终端”还很陌生,如果有人能帮助我,我将非常感激!

提前致谢!

答案1

这很简单。使用以下命令:

find /proc -type d 2> errors.txt > directories.txt

或者

find /proc -type d 2> errors.txt | tee directories.txt

更多信息:

相关内容