gpt4 book ai didi

regex - pgrep 多个进程名称

转载 作者:太空宇宙 更新时间:2023-11-04 09:58:05 26 4
gpt4 key购买 nike

我想在 Linux 中使用“pgrep”命令获取两个或多个进程的 PID。

我们知道 pgrep 的语法是

pgrep [options] <pattern>

这是一个假设的命令,它应该返回名称分别为 process1process2 的两个进程的 PID。

pgrep process1 OR process2 

实现上述需要使用什么模式?

最佳答案

尝试:

pgrep 'process1|process2'

例子:

 -->pgrep 'atd|cron'
1078
1093

-->ps -eaf |grep -E 'atd|cron'
daemon 1078 1 0 Aug08 ? 00:00:00 /usr/sbin/atd -f
root 1093 1 0 Aug08 ? 00:00:19 /usr/sbin/cron -f
xxxx 14364 9597 0 11:56 pts/2 00:00:00 grep -E atd|cron

关于regex - pgrep 多个进程名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58527655/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com