Skip to content

Instantly share code, notes, and snippets.

@oldengremlin
Last active July 12, 2019 13:53
Show Gist options
  • Save oldengremlin/17b718996e54c38940f170f3c6fb2021 to your computer and use it in GitHub Desktop.
Save oldengremlin/17b718996e54c38940f170f3c6fb2021 to your computer and use it in GitHub Desktop.
tping
#!/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