开发者

bash: run a command for n minutes, then SIGHUP it

开发者 https://www.devze.com 2023-01-30 00:00 出处:网络
Is there any bash/linux command to launch a long-running command, then kill it after n min开发者_JS百科utes? I guess I could hack something up with perl using fork and kill, but does anyone know of so

Is there any bash/linux command to launch a long-running command, then kill it after n min开发者_JS百科utes? I guess I could hack something up with perl using fork and kill, but does anyone know of something already out there?


See the timeout command now in most GNU/Linux distros.

timeout -sHUP 10m command

The same functionality can be achieved with http://www.pixelbeat.org/scripts/timeout


Try it with this one, it starts your command in the background, stores it's PID in $P, waits for some time and kills it with a SIGHUP.

yourCommand & PID=$!
sleep ${someMinutes}m
kill -HUP $PID

Cheers

PS: that assumes a sleep that knows about Nm (minutes), else, you might want to do some math :)


n=5
some_command &
pid=$!
at now + $n minutes <<<"kill -HUP $pid"

The benefit of using at over waiting for sleep is that your script wont block waiting for the sleep to expire. You can go and do other things and at will asynchronously fire at the specified time. Depending on your script that may be a very important feature to have.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号