sh 外壳启动蟒蛇

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 外壳启动蟒蛇相关的知识,希望对你有一定的参考价值。

shell自动启动python,日志写入日志文件

该脚本与srcs目录同级

#!/bin/bash
cd srcs
currTime=$(date "+%Y_%m_%d")
logfile=${currTime}_mahjong.log 
python -m index test >& logs/$logfile &


shell自动重启python,先杀死python脚本,再启动

#!/bin/bash
cd srcs
currTime=$(date "+%Y_%m_%d")
logfile=${currTime}_mahjong.log
ps -ef | grep index | grep -v "grep"  | awk '{print $2}' | xargs kill
python -m index test >& logs/$logfile &

以上是关于sh 外壳启动蟒蛇的主要内容,如果未能解决你的问题,请参考以下文章

sh 服务器上重启蟒蛇脚本

sh 查看外壳文件具体的执行

sh 外壳:杀

sh 外壳为の文

sh 运维常用外壳脚本

sh 外壳の再起动