- 论坛徽章:
- 20
|
改造一下tty,输出更多信息。
- [~]# cat tty.c
- #include <unistd.h>
- #include <stdio.h>
- int main()
- {
- printf("pid=%d, ppid=%d, pgrp=%d, %stty, ttygrp=%d\n", getpid(), getppid(), getpgrp(), isatty(0)?"":"NOT ", tcgetpgrp(0));
- return 0;
- }
- [~]# { echo $; ./tty; ./tty & ./tty & }; wait; ( echo $; eval echo '$'; ./tty; ./tty& ./tty & wait; ./tty & ./tty &)
- # { ... }
- 42383 # bash
- pid=32347, ppid=42383, pgrp=32347, tty, ttygrp=32347 # pgrp == pid, ppid == bash, fg, fg == pid
- [1] 32348
- [2] 32349
- pid=32348, ppid=42383, pgrp=32348, tty, ttygrp=42383 # pgrp == pid, ppid == bash, bg/1, fg == bash
- [1]- Done ./tty
- pid=32349, ppid=42383, pgrp=32349, tty, ttygrp=42383 # pgrp == pid, ppid == bash, bg/2, fg == bash
- [2]+ Done ./tty
- # ( ... )
- 42383 # $ in (...) is not subshell
- 42383 # ... even by eval
- pid=32351, ppid=32350, pgrp=32350, tty, ttygrp=32350 # pgrp != pid, pgrp == subshell, fg, fg == subshell
- pid=32352, ppid=32350, pgrp=32350, NOT tty, ttygrp=-1 # pgrp != pid, pgrp == subshell, bg/1, stdin == /dev/null
- pid=32353, ppid=32350, pgrp=32350, tty, ttygrp=32350 # pgrp != pid, pgrp == subshell, bg/2, stdin == tty, fg == subshell
- # wait bg/1 & bg/2
- [~]# pid=32354, ppid=1, pgrp=32350, NOT tty, ttygrp=-1 # pgrp != pid, pgrp == subshell, parent == init, bg/3, stdin == /dev/null
- pid=32355, ppid=1, pgrp=32350, tty, ttygrp=42383 # pgrp != pid, pgrp == subshell, parent == init, bg/4, stdin == tty, fg == bash
复制代码 |
|