使用nohup - >输出到文件和控制台

时间:2016-11-04 11:06:31

标签: linux console output nohup

我在我的项目中使用nohup。 有没有可能在使用nohup的同时将程序输出到控制台和文件?

“tee”我没有成功:

nohup ./programm 2>&1 | tee Output.txt

感谢您的帮助

1 个答案:

答案 0 :(得分:4)

尝试运行并将输出记录在文件中。

nohup ./program  > Output.txt | tail -F Output.txt &

如果你想在后台运行它:

nohup ./program  > Output.txt &