如果我运行命令ping google.com
。它将在终端上提供连续输出。
示例输出:
64 bytes from 74.125.130.101: icmp_seq=1 ttl=42 time=980 ms
64 bytes from 74.125.130.101: icmp_seq=2 ttl=42 time=1883 ms
64 bytes from 74.125.130.101: icmp_seq=3 ttl=42 time=1947 ms
64 bytes from 74.125.130.101: icmp_seq=4 ttl=42 time=1273 ms
64 bytes from 74.125.130.101: icmp_seq=5 ttl=42 time=848 ms
64 bytes from 74.125.130.101: icmp_seq=6 ttl=42 time=1072 ms
64 bytes from 74.125.130.101: icmp_seq=7 ttl=42 time=1202 ms
现在,如果我想修改每个输出行以仅显示64 bytes from 74.125.130.101:
部分,我该怎么做?
我想知道一个泛型方法,它也可以与其他命令一起使用,产生实时详细输出。