使用 awk 捕获多行输出的第一行?
我有这个输出,它是与 fcgi 的 grep 匹配运行的所有进程的 PID:
# ps ax | grep fcgi | cut -f1 -d' '
21065
21066
21067
21068
21069
21070
24801
我想剪掉第一个数字(即 21065),这样我可以将它传递给kill函数来杀死父进程(父进程)作为第一个 PID 返回)。
关于如何做到这一点有什么想法吗?
I have this output, which is the PID of all processes running matching a grep for fcgi:
# ps ax | grep fcgi | cut -f1 -d' '
21065
21066
21067
21068
21069
21070
24801
I want to cut out the very first number (i.e. 21065) so I can pass it to the kill function to kill the parent process (the parent process is returned as the first PID).
Any ideas on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不要使用 ps ax | grep... 来终止进程(如果可以避免的话)。请参阅此处
而是使用 pidof
Don't use
ps ax | grep...
to kill a process, if you can avoid it. See hereInstead use
pidof
使用:
获取pid号
直接kill:
Use:
to get the pid number
to directly kill:
无需跳过所有内容运行
ps
、grep
、cut
、head
和杀死
你自己。这就是pkill
的用途。另请参阅
pgrep
以供将来参考。There is no need to jump through all the hoops of running
ps
,grep
,cut
,head
, andkill
yourself. That's whatpkill
is for.Also see
pgrep
for future reference.