如何在bash中指定pgrep中的命令行参数?

时间:2016-07-13 01:42:32

标签: bash shell process grep

我有几个使用相同名称但不同命令行参数运行的进程。

$ ps -ef | grep process_name 
myusername 19276 6408 0 18:12 pts/22 00.00.00 process_name 4010 127.0.0.1
myusername 23242 6369 0 18:32 pts/11 00.00.00 process_name 4010 127.0.0.2

如何根据流程的全名获取流程ID,例如process_name 4010 127.0.0.1

我尝试使用pgrep,但看起来这不会查看参数。

$ pid=$(pgrep process_name) 
19276 23242
$ pid=$(pgrep process_name 4010 127.0.0.1) #error
$ pid=$(pgrep "process_name 4010 127.0.0.1") #blank
$ pid=$(pgrep "process_name\s4010\s127.0.0.1") #blank
$ pid=$(pgrep "process_name[[:space:]]4010[[:space:]]127.0.0.1") #blank

1 个答案:

答案 0 :(得分:1)

使用-f选项匹配完整命令行:

pgrep -f 'process_name 4010 127.0.0.1'

这也将匹配subprocess_name 4010 127.0.0.11。如果您想避免这种情况,请使用^在开头锚定匹配,并在结尾使用$作为锚点:

pgrep -f '^process_name 4010 127.0.0.1$'

文档

来自man pgrep

  

-f, - fulll
该模式通常只与进程匹配   名称。设置-f时,使用完整的命令行。