1
2
3
4
5
6
7
8
9
nohup python -u test.py > test.log 2>&1 &
nohup python
-
u test.py > test.log
>&
&
#最后的&表示后台运行
#2 输出错误信息到提示符窗口
#1 表示输出信息到提示符窗口, 1前面的&注意添加, 否则还会创建一个名为1的文件
#最后会把日志文件输出到test.log文件
#查看
tail -f test.log#如果要实时查看日志文件使用命令
tail
f test.log
#如果要实时查看日志文件使用命令
cat test.log#查看全部输出使用命令
cat test.log
#查看全部输出使用命令
京公网安备 11010502049817号