Skip to content

Instantly share code, notes, and snippets.

@imCoding
Created January 2, 2012 12:54
Show Gist options
  • Save imCoding/1550580 to your computer and use it in GitHub Desktop.
Save imCoding/1550580 to your computer and use it in GitHub Desktop.
IP SCAN - Linux Terminal.
for IP in 192.168.1.{100..120};
do if ping $IP -c 1 > /dev/null;
then echo $IP TAKEN;
else echo $IP FREE;
fi;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment