Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> linux系統如何快速查看進程pid

linux系統如何快速查看進程pid

日期:2017/2/7 16:55:23      編輯:Linux教程
一個很簡單的命令,pgrep,可以迅速定位包含某個關鍵字的進程的pid;使用這個命令,再也不用ps aux 以後去對哪個進程的pid了
用法:
    pgrep -l XXX
說明:
    -l參數,可以顯示出pid及進程名字;不加-l只顯示pid,誰知道是什麼進程的pid
舉例:
 
# pgrep httpd
2092
2094
2096
2098
2106
2108
2109
2111
14705
# pgrep -l httpd
2092 httpd
2094 httpd
2096 httpd
2098 httpd
2106 httpd
2108 httpd
2109 httpd
2111 httpd
14705 httpd
 
    當然,pgrep的用法不僅僅如此,有興趣的同學可以研究;不過就本人來說,應用范圍有限,本著應用之上的原則,未對pgrep做太多的學習。
Copyright © Windows教程網 All Rights Reserved