首页 > 代码库 > python程序一直在后台运行的解决办法

python程序一直在后台运行的解决办法

刚写了个python程序,要一直在后台运行,即使断开ssh进程也在,下面是解决办法:

假如Python程序为test.py

编写shell脚本start.sh
#!/bin/bash
python test.py &

chmod +x start.sh
./start.sh

  

python程序一直在后台运行的解决办法