pgrep 查詢程式的工具

tonykorn97發表於2006-11-07

pgrep 是透過程式的名字來查詢程式的工具,一般是用來判斷程式是否正在執行。在伺服器的配置和管理中,這個工具常被應用,簡單明瞭;


用法:


#ps 引數選項 程式名

常用引數


-l 列出程式名和程式ID;
-o 程式起始的ID;
-n 程式終止的ID;

舉例:


[root@localhost ~]# pgrep -lo httpd
4557 httpd
[root@localhost ~]# pgrep -ln httpd
4566 httpd
[root@localhost ~]# pgrep -l httpd
4557 httpd
4560 httpd
4561 httpd
4562 httpd
4563 httpd
4564 httpd
4565 httpd
4566 httpd
[root@localhost ~]# pgrep httpd
4557
4560
4561
4562
4563
4564
4565
4566

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/312079/viewspace-245513/,如需轉載,請註明出處,否則將追究法律責任。

相關文章