为什么在进程列表中ps -ef | grep $$
显示该grep
命令? 不是在is 完成工作grep
后才执行的吗?ps
答案1
当管道命令时,所有进程都会同时启动,它们只是休眠(阻塞)直到 I/O 进入/退出它们。shell 不会缓冲输出并保存它直到一个进程完成,然后将其传输到另一个进程。
例如:
mtak@rubiks:~$ tar -zcvf test.tgz /lib/ | grep bla | grep foo | grep bar
结果是:
mtak 28813 28799 0 12:35 pts/17 00:00:00 tar -zcvf test.tgz /lib/
mtak 28814 28799 0 12:35 pts/17 00:00:00 grep --color=auto bla
mtak 28815 28799 0 12:35 pts/17 00:00:00 grep --color=auto foo
mtak 28816 28799 0 12:35 pts/17 00:00:00 grep --color=auto bar
您可以在 /proc 树中看到 grep 进程的状态:
mtak@rubiks:~$ grep State /proc/28814/status
State: S (sleeping)
您还可以看到两个 grep 都连接到同一个管道 (id 57573438
),并且第一个进程的 STDOUT( 1
) 连接到0
第二个进程的 STDIN()。
root@rubiks:~# ls -l /proc/28815/fd
total 0
lr-x------ 1 mtak mtak 64 dec 1 12:35 0 -> pipe:[57573437]
l-wx------ 1 mtak mtak 64 dec 1 12:35 1 -> pipe:[57573438]
lrwx------ 1 mtak mtak 64 dec 1 12:35 2 -> /dev/pts/17
root@rubiks:~# ls -l /proc/28816/fd
total 0
lr-x------ 1 mtak mtak 64 dec 1 12:35 0 -> pipe:[57573438]
lrwx------ 1 mtak mtak 64 dec 1 12:35 1 -> /dev/pts/17
lrwx------ 1 mtak mtak 64 dec 1 12:35 2 -> /dev/pts/17