shell和程式的關係:
我們從login shell 說起,login shell用於表示登陸程式,是指使用者剛登入系統時,由系統建立,用以執行shell 的程式。
這裡先執行幾個命令:
列印登陸程式(一直存在的,直到登陸退出)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 <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <unistd.h> 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 ", 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。