#這裡先執行幾個指令:
列印登陸程序(一直存在的,直到登陸退出)ID
george.guo@ls:~$ echo $PPID 3411 george.guo@ls:~$ ps -aux | grep 3411 george.+ 3411 0.0 0.0 99004 4520 ? S 11:00 0:00 sshd: george.guo@pts/46
列印登陸進程fork出的shell進程(一直存在的,直到登陸退出)
george.guo@ls:~$ echo $$ 3412 george.guo@ls:~$ ps -aux | grep 3412 george.+ 3412 0.5 0.0 21380 5120 pts/46 Ss 11:00 0:00 -bash
從上面的幾個指令可以看出:
登陸進程ID是3411,它創建了bash shell子進程3412。以後的腳本執行,
3412我們這裡稱為主shell,它會啟動子shell進程處理腳本。
(註:在bash中,子shell進程的PID儲存在一個特殊的變數『$$』中,PPID儲存子shell父進程的ID。)
我們寫兩個小程式驗證下:
george.guo@ls:~$ cat yes.c
##include #include #include <sys/types.h> #include int main() { pid_t pid; pid_t ppid; pid = getpid(); ppid = getppid(); system("./test"); //system will fork a process for exec ./test printf("yes pid = %d, yes ppid = %d\n", pid, ppid); }
george.guo@ls:~$ cat test
#!/bin/bash echo "PID of this script: $$" echo "test's PPID(system's fork id) = $PPID" echo "tests's pid = $$"
運行結果如下:
george.guo@ls~$ ./yes
PID of this script: 6082 tests PPID(system's fork id)= 6081 echo tests self pid is 6082 yes PID = 6080, yes PPID = 3412
可見yes進程的父進程ID是3412,也就是登陸進程fork的bash shell子進程,主shell。這是因為
yes是由主shell執行的。 yes進程ID是6080,呼叫system, fork出子shell ID為6081。
對於system呼叫:
使用system()運行指令需要建立至少兩個行程。一個用於運行shell (這裡其ID為6081),
另外一個或多個則用於shell 所執行的指令(這裡是一個子shell,就是腳本test本身).
腳本test本身進程ID為6082。
以上是Linux之shell 和進程的詳細內容。更多資訊請關注PHP中文網其他相關文章!