我尝试运行nohup watch -n 5 python3 main.py &
,但无法再运行。有没有办法watch -n 5 python3 main.py &
在后台运行命令?
答案1
您可以在 tmux 或 screen 会话中运行它,然后就让它留在那里。或者编写一个小的 upstart 脚本 fx
description "main"
author ""
start on filesystem and net-device-up IFACE!=lo
exec python3 main.py
并让 main.py 处理迭代。