linux – Bash脚本启动进程,等待随机,kill进程,重启

前端之家收集整理的这篇文章主要介绍了linux – Bash脚本启动进程,等待随机,kill进程,重启前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是一个绝对的初学者,我正在尝试创建一个bash脚本来随机化命令行应用程序的启动和退出.我计划在autostart.sh中发现以下内容稍微延迟后自动启动脚本(Crunchbang)(在此处找到: http://interwebworld.co.uk/2011/10/23/how-to-launch-programs-automatically-at-startup-in-crunchbang-linux/)
(sleep 300s && /home/myuser/Scripts/randomizer.sh) &

这基本上是我需要在randomizer.sh脚本中完成的,有点伪代码

start applicationfile
wait a random period of time
if applicationfile is still running
    kill its process
    wait a random period of time
    exit this script and restart this script
else exit this script and restart this script

到目前为止我的randomizer.sh,我欢迎一些帮助,如下(包含伪代码的残余),并在这里找到睡眠延迟:http://blog.buberel.org/2010/07/howto-random-sleep-duration-in-bash.html

/path/to/applicationfile -s 111.222.333.444 -u username -p password
sleep $[ ( $RANDOM % 150 ) + 60 ]m
if applicationfile is still running
    kill $(ps aux | grep '[u]sername' | awk '{print $2}')
    sleep $[ ( $RANDOM % 150 ) + 60 ]m
    exec $randomizer.sh
else exec $randomizer.sh

我“认为”非伪部分应该像它们一样工作,但如果我错了,请纠正我或调整.初始applicationfile命令行按原样工作,我已经测试了进程kill行,它按预期工作. Applicationfile没有内置的方法从命令行结束自己,但远程机器上的死连接将在本地被杀死5分钟后被杀死,因此在本地杀死它是可以满足我的需要.

我不知道如何处理的是kill上面的行,它首先检查进程是否正在运行.对不起文字的墙,但我想表明我已经做了尽可能多的事情.

解决方法

在bash,$!是最后一个启动过程的PID,所以沿着这条线的图案应该有效:
mycommand &
last_pid=$!
sleep( $RANDOM )
kill -KILL $last_pid

当然,你可以改变你发送的信号,$RANDOM和你想睡觉的时间等之间的关系.

除非a)睡眠时间很长或b)你的机器启动了很多短暂的过程,否则新进程获得相同的PID的可能性不大.在Linux上,PID周期性地分配,最大值为32,765,因此,粗略地说,您必须在睡眠时间内启动许多进程才有可能触及属于不同进程的相同PID.如果这是一个风险,你可以添加一个测试(从技术上讲,这里有一场比赛,但这不太可能是一个问题).以下似乎会做你想要的.

signal=KILL

sleep_a_while () {
    sleep $[ ( $RANDOM % 150 ) + 60 ]m
}

while true; do
    # Note: command launched in background:
    /path/to/applicationfile -s 111.222.333.444 -u username -p password &

    # Save PID of command just launched:
    last_pid=$!

    # Sleep for a while:
    sleep_a_while

    # See if the command is still running,and kill it and sleep more if it is:
    if ps -p $last_pid -o comm= | grep -qs '^applicationfile$'; then
        kill -$signal $last_pid 2> /dev/null
        sleep_a_while
    fi

    # Go back to the beginning and launch the command again
done

我用一个等效的循环替换了自我执行.

在kill行上,由于竞争,stderr重定向到/ dev / null是可取的.该过程可能会在ps完成的时间和执行kill的时间之间自然退出,从而产生无害的错误消息.除非PID存在的测试和信号的发送是一致的,否则这种竞争是不可避免的(并且无害).

如果打算一次最多运行一个applicationfile实例,则可以通过替换以下内容来完全避免此竞争:

# See if the command is still running,and kill it and sleep more if it is:
if ps -p $last_pid -o comm= | grep -qs '^applicationfile$'; then
    kill -$signal $last_pid 2> /dev/null
    sleep_a_while
fi

附:

killall -q applicationfile && sleep_a_while

如果不能使用,Keith Reynolds的测试变体更好,因为它避免了不必要的grep,即使用:

# See if the command is still running,and kill it and sleep more if it is:
if [ "$(ps -p $last_pid -o comm=)" = "applicationfile" ]; then
    kill -$signal $last_pid 2> /dev/null
    sleep_a_while
fi
原文链接:https://www.f2er.com/linux/394586.html

猜你在找的Linux相关文章