命令pgrep
-
名称缩写: Process Grep
-
用途: 进程检索,以名称为依据从运行进程队列中查找进程,并显示查找到的进程id
-
语法: ]# pgrep [选项] 参数
-
选项:
-d, --delimiter <string> 指定输出分隔符
-l, --list-name 列出PID和进程名
-a, --list-full 列出PID和完整的命令行
-v, --inverse 取反匹配
-w, --lightweight 列出所有TID
-c, --count 统计匹配进程数
-f, --full 使用完整的进程名进行匹配
-g, --pgroup <PGID,...> 匹配pgid
-G, --group <GID,...> 匹配gid
-n, --newest 选择最近启动的
-o, --oldest 选择最近启动最少的
-P, --parent <PPID,...> 只匹配指定父进程下的子进程
-s, --session <SID,...> 匹配sid
-t, --terminal <tty,...> 匹配指定终端
-u, --euid <ID,...> 匹配euid
-U, --uid <ID,...> 匹配uid
-x, --exact 完全匹配命令名
-F, --pidfile <file> 从文件中读取pid
-L, --logpidfile 若没锁定PID文件则失败
--ns <PID> 匹配pid名称空间
--nslist <ns,...> 列出指定的名称空间
-h, --help 显示帮助
-V, --version 显示版本信息
-
实例:
转载于:https://my.oschina.net/xinsui1314x/blog/3077094