linux shell 擷取進程id,或者在應用程式中擷取進程id__linux

來源:互聯網
上載者:User

1、linux shell下擷取進程ID的方法:  ps -A |grep "/usr/sbin/gps_app"| awk '{if($6 == "'start'") {print $1}}'
 pidof "cmdname"  pgrep "cmdname"

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

第一種:ps -A,列出所有進程

grep "cmdname",過濾得到匹配cmdname欄位的進程

awk '{if($6 == "'start'") {print $1}}',匹配到第6列為start欄位的那一行,列印出該行的第一列

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

第三種: pgrep方法 pidof "usr/bin/ser_app" 和 pidof "ser_app"運行結果相同,都是返回匹配到的進程id。


2、c語言擷取進程id

int gps_pid = getpid();

sprintf(sys_cmd, "echo %d >/var/run/gps_app.pid", gps_pid);

system(cmd);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.