Skip to content

Instantly share code, notes, and snippets.

@SahilC
Created August 22, 2014 12:27
Show Gist options
  • Save SahilC/af0206645e069fded7db to your computer and use it in GitHub Desktop.
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
#!/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