Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save adventureloop/3d36664dada4da1a619470c18b6db1d4 to your computer and use it in GitHub Desktop.
Save adventureloop/3d36664dada4da1a619470c18b6db1d4 to your computer and use it in GitHub Desktop.
#!/bin/sh
default=172.20.10
if [ -z $1 ]
then
prefix=$default
else
prefix=$1
fi
pinghost ()
{
ping -t 1 -c 1 $1 > /dev/null
if [ $? -eq 0 ]
then
echo hit $1
fi
}
for x in `jot 254`
do
pinghost $prefix.$x &
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment