python程序 自动重启 不停执行

python 程序 不停地执行

#!/bin/bash
/usr/sbin/sshd
retry ()
{
    false;
    while [ $? -gt 0 ]; do
        $@ || ( sleep 1 && false );
    done
}
bash -c "retry stdbuf -o0 python src/main.py 2203 60 2" &
bash -c "retry stdbuf -o0 python src/parser.py" &

你可能感兴趣的:(django,服务器,运维)