运行python脚本后台执行

时间:2021-02-12 08:57:22

最近搞到了一台服务器,挂一个脚本刷刷河畔在线时间。脚本随便写了两下,能跑到什么时候就随缘了

https://blog.csdn.net/philosophyatmath/article/details/80174687

运行python脚本后台执行

1 脚本后加&

python3  run.py >/dev/null 2>&1 &

2 使用nohup在后台执行命令

nohup python3  run.py >/dev/null 2>&1 &

3 使用screen执行命令

4 使用watch连续地执行一个命令