我使用此命令在ubuntu linux的后台运行python脚本:
python script.py &
当我关闭终端时,它在后台运行
但是当我再次打开终端时,我怎么能看到script.py输出?
答案 0 :(得分:1)
几个选项:
tail -f
tail -f
python script.py > /tmp/logfile &
然后:
tail -f /tmp/logfile
答案 1 :(得分:0)
使用screen运行python脚本
答案 2 :(得分:0)
有许多选项可以在后台监控脚本。
$ screen $ python script.py & Disconnect your terminal $ screen -ls Copy the PID and run the below command $ screen -r PID
您可以看到脚本输出。