服务起在后台的.sh脚本

【服务起在后台的.sh脚本】指定端口将服务起在后台
port=9000 pid=`lsof -t -i:$port` if [ $pid ]; then kill -9 $pid fi nohup python3 main.py $port & tail -f 100 nohup.out

    推荐阅读