Created
August 22, 2014 12:27
-
-
Save SahilC/af0206645e069fded7db to your computer and use it in GitHub Desktop.
Find all IPs connected to a network, assuming that your IP range is 192.168.1.x
This file contains hidden or 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/bash | |
for ip in 192.168.1.{1..254}; do | |
ping -c 1 -W 1 $ip | grep "64 bytes" & | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment