The output of a typical ping command is -
--- 192.168.1.107 ping statistics ---
2 packets transmitted, 1 received, 50% packet loss, time 1008ms
rtt min/avg/max/mdev = 0.288/0.288/0.288/0.000 ms
I want to display only "50% packet loss" portion on a terminal window when I run the ping command in a shell script. How should I proceed for it ?
Using grep
-o
tellsgrep
to print only the matching portion:Using awk
If the output of ping is viewed as comma-separated fields, then, as shown in your sample output, the packet loss info is in the third field. This allows us to use awk as follows: