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 website.com -n 3 | grep Minimum
見せてくれる
Minimum = 24ms, Maximum = 62ms, Average = 36ms
最小 ping 以外のすべてをトリムするには、何を追加すればよいですか? 「24」のみを出力するには?
pingの出力をにパイプできますsed:
ping
sed
sed 's/Minimum = \([0-9]\+\)ms.*/\1/'
または、 がある場合はGNU grep、次のようにパイプします。
GNU grep
grep -oP "(?<=Minimum = )[0-9]+(?=ms)"