Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要的是 ping 服务器,但只希望返回平均时间,我认为 grep 或类似的东西会有所帮助,但谷歌搜索不会返回太大用处。
这是进入一个 geektool 脚本,它将显示一个服务器 ping 以查看它是否启动。
需要是一个可以在终端中工作的脚本/命令,因为我也需要将它拉到 python 中。
谢谢
怎么样:
ping -c 5 google.com | grep "round-trip" | cut -f 5 -d "/"
不知何故,我的系统 ping 命令没有输出round-trip,但是rtt. 所以这个会更好:
round-trip
rtt
ping -q -c 5 google.com | tail -n 1 | cut -f 5 -d '/'
-q使它不那么冗长,因为无论如何我们都不需要太多输出。tail只返回输出的最后一行
-q
tail