shell擷取進程ID的方法: pidof | pgrep | ps-A+grep+awk

來源:互聯網
上載者:User

標籤:檔案   sp   c   r   bs   as   程式   d   方法   

shell擷取進程ID的方法:

我知道和實踐過的有這麼三種:

  1.  ps -A |grep "cmdname"| awk ‘{print $1}‘
  2.  pidof "cmdname"
  3.  pgrep "cmdname"

這三種在bash和busybox ash裡面的運行結果稍有不同,

第一種完全相同,但是因為調用命令次數較多,效能上是不行的。

第二種: pidof 只能擷取程式的檔案名稱匹配到的進程號,在ash中 比如 pidof "usr/bin/telnetd" 和 pidof "telnetd"中結果不一樣, 前一種結果為空白,但是在bash中執行兩者一樣。

第三種: pgrep跟1的效果相同,因為是單一命令,比第一種效能要好得多。

所以nanoRC就改進為pgrep。

shell擷取進程ID的方法: pidof | pgrep | ps-A+grep+awk

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.