Last active
July 12, 2019 13:53
-
-
Save oldengremlin/17b718996e54c38940f170f3c6fb2021 to your computer and use it in GitHub Desktop.
tping
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ -z "$1" ]; then | |
echo Use: $0 ip-address | |
else | |
sudo ping $1 -A -s1600 -i0.01 -c1000 | awk '/time=[0-9]/ { printf("!"); next } { print }' | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment