Start a process in background, do a task, then kill the process in the background

蓝咒 提交于 2019-11-30 05:06:44

问题


I have a script that looks like this:

pushd .
nohup java -jar test/selenium-server.jar > /dev/null 2>&1 &
cd web/code/protected/tests/
phpunit functional/
popd

The selenium servers needs to be running for the tests, however after the phpunit command finishes I'd like to kill the selenium-server that was running.

How can I do this?


回答1:


When the script is excecuted a new shell instance is created. Which means that the jobs in the new script would not list any jobs running in the parent shell.

Since the selenium-server server is the only background process that is created in the new script it can be killed using

#The first job 
kill %1

Or

#The last job Same as the first one
kill %-



回答2:


You can probably save the PID of the process in a variable, then use the kill command to kill it.

pushd .
nohup java -jar test/selenium-server.jar > /dev/null 2>&1 &
serverPID=$!
cd web/code/protected/tests/
phpunit functional/
kill $serverPID
popd

I haven't tested it myself, I'd like to write it on a comment, but not enough reputation yet :)




回答3:


As long as you don't launch any other process in the background - which you don't - you can use $! directly:

pushd .
nohup java -jar test/selenium-server.jar > /dev/null 2>&1 &
cd web/code/protected/tests/
phpunit functional/
kill $!
popd


来源:https://stackoverflow.com/questions/30171050/start-a-process-in-background-do-a-task-then-kill-the-process-in-the-backgroun

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!