我可以 ping 通谷歌网站几秒钟,当我按Ctrl+时C,底部会显示一个简短的摘要:
$ ping google.com
PING google.com (74.125.131.113) 56(84) bytes of data.
64 bytes from lu-in-f113.1e100.net (74.125.131.113): icmp_seq=2 ttl=56 time=46.7 ms
64 bytes from lu-in-f113.1e100.net (74.125.131.113): icmp_seq=3 ttl=56 time=45.0 ms
64 bytes from lu-in-f113.1e100.net (74.125.131.113): icmp_seq=4 ttl=56 time=54.5 ms
^C
--- google.com ping statistics ---
4 packets transmitted, 3 received, 25% packet loss, time 3009ms
rtt min/avg/max/mdev = 44.965/48.719/54.524/4.163 ms
但是,当我使用 执行相同的重定向输出到日志文件时tee
,不会显示摘要:
$ ping google.com | tee log
PING google.com (74.125.131.113) 56(84) bytes of data.
64 bytes from lu-in-f113.1e100.net (74.125.131.113): icmp_seq=1 ttl=56 time=34.1 ms
64 bytes from lu-in-f113.1e100.net (74.125.131.113): icmp_seq=2 ttl=56 time=57.0 ms
64 bytes from lu-in-f113.1e100.net (74.125.131.113): icmp_seq=3 ttl=57 time=50.9 ms
^C
使用 重定向输出时也可以获得摘要吗tee
?
答案1
ping
显示被杀死时的摘要SIGINT
,例如作为 的结果CtrlC,或者当它传输了请求数量的数据包(-c
选项)时。CtrlC导致SIGINT
发送到前台进程组中的所有进程,IE在这种情况下,管道中的所有进程(ping
和tee
)。tee
不捕获SIGINT
(在 Linux 上,请查看SigCgt
in /proc/$(pgrep tee)/status
),因此当它接收到信号时,它就会死亡,关闭管道的末端。接下来发生的是一场竞赛:如果ping
仍在输出,它将在SIGPIPE
获得SIGINT
;之前死亡。如果它SIGINT
在输出任何内容之前得到 ,它将尝试输出其摘要并死于SIGPIPE
。无论如何,输出不再有任何地方可去。
要获得摘要,请安排仅ping
使用以下命令进行杀死SIGINT
:
killall -INT ping
或使用预定数量的数据包运行它:
ping -c 20 google.com | tee log
或者(把最好的留到最后),有tee
忽略SIGINT
,正如您发现的那样。
答案2
事实证明,有一个选项可以忽略按下+tee
时发送的中断信号。从CTRLC男士T恤:
-i, --ignore-interrupts
ignore interrupt signals
当整个管道被 中断时SIGINT
,该信号被发送到管道中的所有进程。问题是通常先tee
接收然后用杀死。如果在 中被忽略,它将仅传递到并显示摘要:SIGINT
ping
ping
SIGPIPE
SIGINT
tee
ping
$ ping google.com | tee --ignore-interrupts log
PING google.com (142.250.150.101) 56(84) bytes of data.
64 bytes from la-in-f101.1e100.net (142.250.150.101): icmp_seq=1 ttl=104 time=48.8 ms
64 bytes from la-in-f101.1e100.net (142.250.150.101): icmp_seq=2 ttl=104 time=51.0 ms
64 bytes from la-in-f101.1e100.net (142.250.150.101): icmp_seq=3 ttl=107 time=32.2 ms
^C
--- google.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 32.198/44.005/50.973/8.394 ms
因此,ping
接收SIGINT
最终将终止,导致tee
看到管道编写器已经死亡,最终tee
也导致终止(在“消化”输入至今之后)。