怎样把命令行输出写入文件 |how to log command line out put into a file

如果不需要屏幕同时输出,可以用 “>”

ls > out

注意 > 只会写入 stdout 而 stderr只会显示在屏幕上,如果想把stderr一起log了,可以

ls 2>&1 > out

如果想保持屏幕输出,同时记录到文件里面,可以用tee命令

ls 2>&1 | tee

Leave a Comment

Your email address will not be published.