• pgrep
    • 补充说明
      • 语法
      • 选项
      • 参数
      • 实例

    pgrep

    设置用户的认证信息,包括用户密码、密码过期时间等

    补充说明

    pgrep命令 以名称为依据从运行进程队列中查找进程,并显示查找到的进程id。每一个进程ID以一个十进制数表示,通过一个分割字符串和下一个ID分开,默认的分割字符串是一个新行。对于每个属性选项,用户可以在命令行上指定一个以逗号分割的可能值的集合。

    语法

    1. pgrep(选项)(参数)

    选项

    1. -o:仅显示找到的最小(起始)进程号;
    2. -n:仅显示找到的最大(结束)进程号;
    3. -l:显示进程名称;
    4. -P:指定父进程号;
    5. -g:指定进程组;
    6. -t:指定开启进程的终端;
    7. -u:指定进程的有效用户ID

    参数

    进程名称:指定要查找的进程名称,同时也支持类似grep指令中的匹配模式。

    实例

    1. pgrep -lo httpd
    2. 4557 httpd
    3. [root@localhost ~]# pgrep -ln httpd
    4. 4566 httpd
    5. [root@localhost ~]# pgrep -l httpd
    6. 4557 httpd
    7. 4560 httpd
    8. 4561 httpd
    9. 4562 httpd
    10. 4563 httpd
    11. 4564 httpd
    12. 4565 httpd
    13. 4566 httpd
    14. [root@localhost ~]# pgrep httpd 4557
    15. 4560
    16. 4561
    17. 4562
    18. 4563
    19. 4564
    20. 4565
    21. 4566