使用命令
nohup python -u test.py > test.log 2>&1 &
&
表示后台运行2
输出错误信息到提示符窗口1
表示输出信息到提示符窗口,1
前面的&
注意添加,否则还会创建一个名为1
的文件最后会把日志文件输出到test.log
文件
实时查看日志文件:
tail -f test.log
查看全部输出:
cat test.log
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:linux后台运行脚本并输出到日志文件