Created
July 30, 2016 21:46
-
-
Save billglover/7eef077d995742208da3793315b2b613 to your computer and use it in GitHub Desktop.
List the IP addresses for all Raspberry Pis on the network (range 192.168.2.0/24)
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
sudo fing -r1 -n 192.168.2.0/24 -o table,csv | awk -F ";" '$7 ~ /Raspberry/ {print $1}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment