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" &
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" &