如何编写 shell 脚本以编程方式杀死进程?

发布于 2024-09-07 11:06:13 字数 212 浏览 2 评论 0原文

我一直在使用以下方法手动终止进程

ps -ef | grep process
kill -9 process id of process
start the process again

但我认为如何以编程方式执行此操作,就像在 shellscript 中写入一样 我只需要运行例如 ./restartProcess.sh

谢谢

I have been using the following way to kill a process manually

ps -ef | grep process
kill -9 process id of process
start the process again

But i think how to do it programmitically as in write in a shellscript
i just have to run e.g. ./restartProcess.sh

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光与爱终年不遇 2024-09-14 11:06:13

使用编辑器创建一个名为restartProcess.sh的文件,

kill $(pgrep process)
start the process again 

将上述内容放入其中,然后chmod +x restartProcess.sh

几点 -

只需使用kill pid,如果写得相当好,这允许进程清理。

kill $(pgrep process)

是脚本前两行的Solaris 版本。

use an editor to create a file named restartProcess.sh

kill $(pgrep process)
start the process again 

Put the above in it, then chmod +x restartProcess.sh

several points -

Just use kill pid, this allows the process to cleanup if it was written reasonably well.

kill $(pgrep process)

is the solaris version of the first two lines of your script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文