Skip to content

Instantly share code, notes, and snippets.

@stetro
Created April 16, 2012 18:13
Show Gist options
  • Save stetro/2400445 to your computer and use it in GitHub Desktop.
Save stetro/2400445 to your computer and use it in GitHub Desktop.
IP Checker
for i in "139.6.57.1" "139.6.57.8" "139.6.57.11" "139.6.57.63" "139.6.57.66"
do
ping -c 1 $i > /dev/null
if [ $? == 0 ]
then
echo "$i is online : $i"
else
echo "$i is offline : $i"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment