文章目录
-
- 问题背景
- pgrep指令
-
- help文档
- 使用示例
-
- 1. 列出匹配进程的PID和进程名称(-l)(默认只能从进程名的子集字符串匹配,如果要使用完整进程名的子集字符串匹配,请加-f参数,下同)
- 2. 列出匹配进程的PID和完整的命令行(-a)
- 3. 统计匹配进程的数量(-c)
- 4. 使用完整的进程名称(包括参数)的子集进行匹配(-f)(如果pattern跨越进程命令与参数,需要用双引号括起来)★★★★★
- 5. 不区分大小写进行匹配(-i)
- 6. 选择最近启动的进程(n)
- 7. 选择最早启动的进程(-o)
- 8. 仅匹配给定父进程的子进程(-P)
- 9. 通过控制终端进行匹配(-t)
- 10. 通过有效ID进行匹配(-u)
- 11. 通过真实ID进行匹配(-U)
- 12. 精确匹配命令名称(-x)★★★
问题背景
按照我之前,在脚本中,获取除脚本自身进程之外与脚本同名进程号的方法:
ps -ef | grep "${SCRIPT_NAME}" | grep -v "grep" | awk '{print $2}' | grep -v "$PID"
这种方法有很大问题,莫名奇妙的,它无法正常过滤掉grep的进程(这里面还有点复杂,我一时半会也搞不明白咋回事,据说是grep会开子进程,并非grep那个子进程,而是开了一个与脚本相同的进程,导致出现问题,具体参考:linux shell脚本执行命令时创建子进程问题(特定的情况,例如后台运行、管道、分支或子shell等,脚本可能会创建子进程执行命令)grep)
后来我改用pgrep指令,用这个命令的好处是,不用使用grep命令了,它直接找出来就是进程号,而且不会带入额外的进程号,下面我们来看下pgrep指令的具体用法。
pgrep指令
pgrep命令用于根据进程的名称或其他属性来查找和列出匹配的进程ID(PID)。它可以根据不同的选项进行灵活的进程查找和过滤。
help文档
root@ubuntu:/ky/boot# pgrep --help
Usage:
pgrep [options] <pattern>
Options:
-d, --delimiter <string> specify output delimiter
-l, --list-name list PID and process name
-a, --list-full list PID and full command line
-v, --inverse negates the matching
-w, --lightweight list all TID
-c, --count count of matching processes
-f, --full use full process name to match
-g, --pgroup <PGID,...> match listed process group IDs
-G, --group <GID,...> match real group IDs
-i, --ignore-case match case insensitively
-n, --newest select most recently started
-o, --oldest select least recently started
-P, --parent <PPID,...> match only child processes of the given parent
-s, --session <SID,...> match session IDs
-t, --terminal <tty,...> match by controlling terminal
-u, --euid <ID,...> match by effective IDs
-U, --uid <ID,...> match by real IDs
-x, --exact match exactly with the command name
-F, --pidfile <file> read PIDs from file
-L, --logpidfile fail if PID file is not locked
-r, --runstates <state> match runstates [D,S,Z,...]
--ns <PID> match the processes that belong to the same
namespace as <pid>
--nslist <ns,...> list which namespaces will be considered for
the --ns option.
Available namespaces: ipc, mnt, net, pid, user, uts
-h, --help display this help and exit
-V, --version output version information and exit
For more details see pgrep(1).
中文翻译:
root@ubuntu:/ky/boot# pgrep --help
用法:
pgrep [选项] <模式>
选项:
-d, --delimiter <字符串> 指定输出分隔符
-l, --list-name 列出PID和进程名称
-a, --list-full 列出PID和完整命令行
-v, --inverse 反转匹配结果
-w, --lightweight 列出所有TID
-c, --count 统计匹配进程的数量
-f, --full 使用完整进程名称进行匹配
-g, --pgroup <PGID,...> 匹配指定的进程组ID
-G, --group <GID,...> 匹配真实组ID
-i, --ignore-case 不区分大小写进行匹配
-n, --newest 选择最近启动的进程
-o, --oldest 选择最早启动的进程
-P, --parent <PPID,...> 仅匹配给定父进程的子进程
-s, --session <SID,...> 匹配会话ID
-t, --terminal <tty,...> 通过控制终端进行匹配
-u, --euid <ID,...> 通过有效ID进行匹配
-U, --uid <ID,...> 通过真实ID进行匹配
-x, --exact 精确匹配命令名称
-F, --pidfile <文件> 从文件中读取PID
-L, --logpidfile 如果PID文件未锁定,则失败
-r, --runstates <状态> 匹配运行状态 [D,S,Z,...]
--ns <PID> 匹配与<pid>相同命名空间的进程
--nslist <ns,...> 列出将用于--ns选项的命名空间
可用的命名空间:ipc, mnt, net, pid, user, uts
-h, --help 显示此帮助信息并退出
-V, --version 输出版本信息并退出
更多详细信息请参阅pgrep(1)。
请注意,上面的<pattern>
是要匹配的进程名称或其他属性的模式。可以根据实际情况替换为具体的值。
使用示例
以下是pgrep
命令不同选项的使用示例:
我们在这个容器中测试:
注意:我们首先要学会区分什么是进程的进程名!
进程名就是那个进程的可执行文件,进程名只有一个,除去进程名,其他的都是路径和参数。
比如/bin/bash /usr/local/bin/entrypoint.sh
,进程名是bash
root@5940438e0ee6:/build/libevent# echo "=====输出所有进程完整进程信息:"
=====输出所有进程完整进程信息:
root@5940438e0ee6:/build/libevent# ps -ef
UID PID PPID C STIME TTY TIME CMD
root 1 0 0 Jun27 pts/0 00:00:00 /bin/bash /usr/local/bin/entrypoint.sh
root 7 1 0 Jun27 pts/0 00:02:56 ./kyai_rest
root 43 0 0 23:38 pts/1 00:00:00 /bin/bash
root 56 43 0 23:40 pts/1 00:00:00 ps -ef
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# echo "输出所有进程进程名:"
=====输出所有进程进程名:
root@5940438e0ee6:/build/libevent# ps -e -o comm=
bash
kyai_rest
bash
ps
root@5940438e0ee6:/build/libevent#
1. 列出匹配进程的PID和进程名称(-l)(默认只能从进程名的子集字符串匹配,如果要使用完整进程名的子集字符串匹配,请加-f参数,下同)
pgrep -l <pattern>
pgrep --list-name <pattern>
示例:
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -l ky
7 kyai_rest
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -l ./
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -l ./ky
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -l -f ./ky
7 kyai_rest
2. 列出匹配进程的PID和完整的命令行(-a)
pgrep -a <pattern>
pgrep --list-full <pattern>
示例:
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -a ky
7 ./kyai_rest
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -a ./ky
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -a -f ./ky
7 ./kyai_rest
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -af ./ky
7 ./kyai_rest
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -a bash
1 /bin/bash /usr/local/bin/entrypoint.sh
43 /bin/bash
root@5940438e0ee6:/build/libevent#
3. 统计匹配进程的数量(-c)
pgrep -c <pattern>
pgrep --count <pattern>
示例:
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -c ky
1
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -c bash
2
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -c ./ky
0
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -c -f ./ky
1
root@5940438e0ee6:/build/libevent#
4. 使用完整的进程名称(包括参数)的子集进行匹配(-f)(如果pattern跨越进程命令与参数,需要用双引号括起来)★★★★★
pgrep -f <pattern>
pgrep --full <pattern>
比如有一个进程全名为python3 -u /ky/alg/kyai/nv/m/people/alg/main.py
,用:
pgrep -f <pattern>
pattern为进程全名的任意字符串子集,都能匹配到。
示例1
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -f ky
7
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -f ./ky
7
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep ./ky
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep /usr/local/bin/entrypoint.sh
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -f /usr/local/bin/entrypoint.sh
1
root@5940438e0ee6:/build/libevent#
示例2
匹配开头^
,并且末尾为单词边界\b
(词边界)的情况
pgrep -f "^/ky/tml/ky_ai_algo_manager/ky_algo_manager people\b"
这条
pgrep
命令使用了-f
选项和一个正则表达式来搜索系统上当前运行的进程。它的目的是找到那些命令行完全匹配指定模式的进程。下面是对这个命令各部分的简单解释:
pgrep
:这是一个在 Unix 和类 Unix 系统上用于搜索具有特定特征的进程的命令。它根据进程的名称或其他属性来进行搜索。
-f
:这个选项告诉pgrep
使用完整的进程命令行来进行匹配,而不仅仅是进程的名称。这意味着pgrep
将会查看启动进程时使用的完整命令字符串,包括路径和可能的参数。
"^/ky/tml/ky_ai_algo_manager/ky_algo_manager people\b"
:这是一个正则表达式,用于指定pgrep
搜索的模式:
^
:这个字符表示正则表达式的开始。在这个上下文中,它意味着匹配的命令必须从字符串的开始处开始匹配。
/ky/tml/ky_ai_algo_manager/ky_algo_manager people
:这部分是要匹配的具体命令。pgrep
会搜索运行中的进程,查找其命令行开始部分与此字符串匹配的进程。
\b
:这表示一个单词边界。在这个位置,它用来确保 “people” 是命令行中的一个完整单词。这意味着紧跟在 “people” 之后的字符必须是一个非单词字符(如空格、制表符、特殊符号或字符串的结束),这样可以避免误匹配到以 “people” 开头的其他进程,如 “people1” 或 “peopleSomething”。总的来说,这条命令的用途是找到那些命令行以
/ky/tml/ky_ai_algo_manager/ky_algo_manager people
开头的进程,且 “people” 后面跟着的是一个非单词字符或者命令行的结束,确保了精确匹配特定的进程。
单词边界(
\b
) 在正则表达式中是一个非常有用的概念,它用于指定一个匹配的位置,而这个位置必须位于一个“单词字符”与一个“非单词字符”之间,或者在字符串的开头或结尾,如果那里的字符是一个单词字符的话。这里的“单词字符”通常包括字母(大写和小写)、数字和下划线(_
),对应于正则表达式中的\w
字符类。相应地,“非单词字符”就是不属于\w
的任何字符,包括空格、标点符号、制表符等,对应于\W
字符类。因此,
\b
的作用是标示出单词的开始或结束位置,而不是匹配实际的字符。这使得\b
成为确定模式必须出现在完整单词边界的理想选择,而无论这个单词是由字母、数字还是下划线组成。举几个例子来说:
- 在
\bword\b
中,这个模式只会匹配完整的“word”,而不会匹配到“subword”或“wording”中的“word”部分。\b\d+\b
匹配整数,因为它指定数字(\d+
)必须出现在单词边界上,所以它会匹配“123”(假设它前后是空格或字符串的开始/结束),但不会匹配“a123b”中的数字部分。
在C++代码中构建命令
std::string cmd = "ps -ef | grep -v grep | awk '{print $2}' | grep -w " + pid;
std::string cmd = "pgrep -f \"^" + processName + "\\b\"";
5. 不区分大小写进行匹配(-i)
pgrep -i <pattern>
pgrep --ignore-case <pattern>
示例:
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -i KyAi
7
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -i entry
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -i -f eNtry
1
root@5940438e0ee6:/build/libevent#
6. 选择最近启动的进程(n)
pgrep -n <pattern>
pgrep --newest <pattern>
示例:
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -a bash
1 /bin/bash /usr/local/bin/entrypoint.sh
43 /bin/bash
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -a -n bash
43 /bin/bash
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -n bash
43
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent#
7. 选择最早启动的进程(-o)
pgrep -o <pattern>
pgrep --oldest <pattern>
示例:
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -a bash
1 /bin/bash /usr/local/bin/entrypoint.sh
43 /bin/bash
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -a -o bash
1 /bin/bash /usr/local/bin/entrypoint.sh
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -o bash
1
root@5940438e0ee6:/build/libevent#
8. 仅匹配给定父进程的子进程(-P)
pgrep -P <PPID> <pattern>
pgrep --parent <PPID> <pattern>
示例:
比如0号进程有1号何2号两个子进程:
用pgrep -P 0
能将0号进程的子进程找出来:
root@ubuntu:~#
root@ubuntu:~# pgrep -P 0
1
2
root@ubuntu:~#
在查找到时对子进程筛选:
root@ubuntu:~#
root@ubuntu:~# pgrep -P 0 "system"
1
root@ubuntu:~#
root@ubuntu:~# pgrep -P 0 "thread"
2
root@ubuntu:~#
root@ubuntu:~#
注意:有时用-f参数从非进程名的字符串段匹配筛选时,注意双引号的使用,以及使用双引号后,仍应注意的问题:
下面测试中:pgrep -f -P 0 --system
和pgrep -f -P 0 "--system"
都是报错的,只有pgrep -f -P 0 " --system"
没出问题。
root@ubuntu:~#
root@ubuntu:~# pgrep -f -P 0 --system
pgrep: unrecognized option '--system'
Usage:
pgrep [options] <pattern>
Options:
-d, --delimiter <string> specify output delimiter
-l, --list-name list PID and process name
-a, --list-full list PID and full command line
-v, --inverse negates the matching
-w, --lightweight list all TID
-c, --count count of matching processes
-f, --full use full process name to match
-g, --pgroup <PGID,...> match listed process group IDs
-G, --group <GID,...> match real group IDs
-i, --ignore-case match case insensitively
-n, --newest select most recently started
-o, --oldest select least recently started
-P, --parent <PPID,...> match only child processes of the given parent
-s, --session <SID,...> match session IDs
-t, --terminal <tty,...> match by controlling terminal
-u, --euid <ID,...> match by effective IDs
-U, --uid <ID,...> match by real IDs
-x, --exact match exactly with the command name
-F, --pidfile <file> read PIDs from file
-L, --logpidfile fail if PID file is not locked
-r, --runstates <state> match runstates [D,S,Z,...]
--ns <PID> match the processes that belong to the same
namespace as <pid>
--nslist <ns,...> list which namespaces will be considered for
the --ns option.
Available namespaces: ipc, mnt, net, pid, user, uts
-h, --help display this help and exit
-V, --version output version information and exit
For more details see pgrep(1).
root@ubuntu:~#
root@ubuntu:~# pgrep -f -P 0 "--system"
pgrep: unrecognized option '--system'
Usage:
pgrep [options] <pattern>
Options:
-d, --delimiter <string> specify output delimiter
-l, --list-name list PID and process name
-a, --list-full list PID and full command line
-v, --inverse negates the matching
-w, --lightweight list all TID
-c, --count count of matching processes
-f, --full use full process name to match
-g, --pgroup <PGID,...> match listed process group IDs
-G, --group <GID,...> match real group IDs
-i, --ignore-case match case insensitively
-n, --newest select most recently started
-o, --oldest select least recently started
-P, --parent <PPID,...> match only child processes of the given parent
-s, --session <SID,...> match session IDs
-t, --terminal <tty,...> match by controlling terminal
-u, --euid <ID,...> match by effective IDs
-U, --uid <ID,...> match by real IDs
-x, --exact match exactly with the command name
-F, --pidfile <file> read PIDs from file
-L, --logpidfile fail if PID file is not locked
-r, --runstates <state> match runstates [D,S,Z,...]
--ns <PID> match the processes that belong to the same
namespace as <pid>
--nslist <ns,...> list which namespaces will be considered for
the --ns option.
Available namespaces: ipc, mnt, net, pid, user, uts
-h, --help display this help and exit
-V, --version output version information and exit
For more details see pgrep(1).
root@ubuntu:~#
root@ubuntu:~#
root@ubuntu:~# pgrep -f -P 0 " --system"
1
root@ubuntu:~#
root@ubuntu:~#
9. 通过控制终端进行匹配(-t)
用途
指定特定终端名称进行搜索的用途之一是限定搜索范围。在多用户或多终端环境中,可能会有多个终端同时运行着相同的进程。通过指定终端名称,你可以仅在特定终端中搜索匹配的进程,而不是在所有终端中搜索。
这对于需要在特定终端上执行操作或监控特定终端上的进程非常有用。例如,你可能希望在某个特定的终端上查找正在运行的某个应用程序的进程,或者在某个特定的终端上查找与某个用户相关的进程。
另外,指定终端名称还可以用于在脚本或自动化任务中进行进程管理。通过指定特定的终端,你可以确保只对特定终端上的进程进行操作,而不会影响其他终端上的进程。
总而言之,指定特定终端名称进行搜索可以提供更精确和有针对性的进程查找和管理。
命令
pgrep -t <tty> <pattern>
pgrep --terminal <tty> <pattern>
测试步骤
按照以下步骤进行测试:
- 打开终端。
- 运行
tty
命令,获取当前终端的名称。例如,如果终端名称是/dev/tty1
,则将<tty>
替换为tty1
。 - 运行
pgrep -t <tty> <pattern>
命令,将<pattern>
替换为你想要查找的进程名称或关键字。例如,如果你想要查找所有运行着的bash
进程,可以运行pgrep -t tty1 bash
。 - 如果命令成功执行,它将输出匹配的进程 ID。
- 你也可以尝试运行
pgrep --terminal <tty> <pattern>
命令,它与上述命令的作用相同。
请注意,pgrep
命令用于在进程列表中查找匹配的进程,并输出它们的进程 ID。<tty>
是终端名称,<pattern>
是要查找的进程名称或关键字。你需要根据你的实际情况替换这些参数。
示例
root@ubuntu:~#
root@ubuntu:~# tty
/dev/pts/0
root@ubuntu:~#
root@ubuntu:~#
root@ubuntu:~# pgrep -t /dev/pts/0 bash
root@ubuntu:~#
root@ubuntu:~# pgrep -t /dev/pts/0 sy
root@ubuntu:~#
root@ubuntu:~# pgrep -t /dev/pts/0
root@ubuntu:~#
root@ubuntu:~# pgrep -t "/dev/pts/0"
root@ubuntu:~#
root@ubuntu:~# pgrep -t "/dev/pts/0" bash
root@ubuntu:~#
root@ubuntu:~#
尴尬,我这啥也搜不出来
10. 通过有效ID进行匹配(-u)
用途
pgrep -u <ID> <pattern>
和 pgrep --euid <ID> <pattern>
命令用于在指定用户 ID 或有效用户 ID 下查找匹配的进程。
<ID>
参数用于指定用户 ID 或有效用户 ID。你可以使用用户的用户名或用户 ID 来替换<ID>
。<pattern>
参数用于指定要查找的进程名称或关键字。
命令
pgrep -u <ID> <pattern>
pgrep --euid <ID> <pattern>
测试步骤
- 打开终端。
- 运行
id
命令,获取当前用户的用户 ID 和有效用户 ID。例如,如果用户 ID 是1000
,有效用户 ID 是1000
,则将<ID>
替换为1000
。 - 运行
pgrep -u <ID> <pattern>
命令,将<pattern>
替换为你想要查找的进程名称或关键字。例如,如果你想要查找当前用户下所有运行着的bash
进程,可以运行pgrep -u 1000 bash
。 - 如果命令成功执行,它将输出匹配的进程 ID。
- 你也可以尝试运行
pgrep --euid <ID> <pattern>
命令,它与上述命令的作用相同。
请注意,pgrep
命令用于在进程列表中查找匹配的进程,并输出它们的进程 ID。-u
或 --euid
选项用于指定用户 ID 或有效用户 ID。<ID>
是用户 ID 或有效用户 ID,<pattern>
是要查找的进程名称或关键字。你需要根据你的实际情况替换这些参数。
示例
root@ubuntu:~#
root@ubuntu:~# id
uid=0(root) gid=0(root) groups=0(root)
root@ubuntu:~#
root@ubuntu:~#
root@ubuntu:~# pgrep -u 0000 bash
3058
3955
23187
root@ubuntu:~#
root@ubuntu:~# pgrep -u 0 bash
3058
3955
23187
root@ubuntu:~#
root@ubuntu:~# pgrep -u 1000 bash
root@ubuntu:~#
root@ubuntu:~# ps -ef | grep bash
root 1061 1 0 19:27 ? 00:00:00 /bin/bash /etc/systemd/nvmemwarning.sh
root 1260 1 0 19:28 ? 00:00:00 /bin/bash /ky/boot/kyai_nv_server.sh
root 1276 1 0 19:28 ? 00:00:00 /bin/bash /etc/systemd/nvgetty.sh
root 3058 2914 0 19:28 pts/0 00:00:00 /bin/bash /usr/local/bin/entrypoint.sh
root 3955 3915 0 19:28 pts/0 00:00:00 /bin/bash /usr/local/bin/entrypoint.sh
root 23187 23106 0 21:46 pts/0 00:00:00 -bash
root 36607 23187 0 23:39 pts/0 00:00:00 grep --color=auto bash
root@ubuntu:~#
root@ubuntu:~#
11. 通过真实ID进行匹配(-U)
具体请参见有效id和真实id,我目前还不是很理解。
命令
pgrep -U <ID> <pattern>
pgrep --uid <ID> <pattern>
示例
root@ubuntu:~#
root@ubuntu:~# pgrep -U 0000 bash
3058
3955
23187
root@ubuntu:~#
root@ubuntu:~#
12. 精确匹配命令名称(-x)★★★
命令
pgrep -x <pattern>
pgrep --exact <pattern>
示例
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# ps -ef
UID PID PPID C STIME TTY TIME CMD
root 1 0 0 19:28 pts/0 00:00:00 /bin/bash /usr/local/bin/entrypoint.sh
root 8 1 0 19:28 pts/0 00:00:39 ./kyai_rest
root 41 0 0 23:45 pts/1 00:00:00 /bin/bash
root 54 41 0 23:46 pts/1 00:00:00 ps -ef
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -x kyai
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -x kyai_rest
8
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -x -f kyai_rest
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -x -f ./kyai_rest
8
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -x bash
1
41
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -x -f bash
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -x -f /bin/bash
41
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -x -f /bin/bash /usr/local/bin/entrypoint.sh
pgrep: only one pattern can be provided
Try `pgrep --help' for more information.
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent# pgrep -x -f "/bin/bash /usr/local/bin/entrypoint.sh"
1
root@5940438e0ee6:/build/libevent#
root@5940438e0ee6:/build/libevent#
注意:精准匹配,是包含参数的所有完整匹配
今天的文章shell指令大全_shell查询进程是否存在分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/79902.html