Skip to content

Instantly share code, notes, and snippets.

@downgoon
Created May 9, 2017 07:48
Show Gist options
  • Save downgoon/d98e57535794b97ffd7c31ba2f821c68 to your computer and use it in GitHub Desktop.
Save downgoon/d98e57535794b97ffd7c31ba2f821c68 to your computer and use it in GitHub Desktop.
#!/bin/bash

is_alive_ping()
{
  ping -c 1 -w 1 $1 > /dev/null
  [ $? -eq 0 ] && echo $i ,Alive
}

for i in 192.168.213.{1..254}
do
is_alive_ping $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment