Skip to content

Instantly share code, notes, and snippets.

@PavelJurasek
Created April 24, 2017 14:25
Show Gist options
  • Save PavelJurasek/dae915e5a777ba50e925297e8b26062a to your computer and use it in GitHub Desktop.
Save PavelJurasek/dae915e5a777ba50e925297e8b26062a to your computer and use it in GitHub Desktop.
#!/bin/bash
for f in `cat $1`; do
ping -c 1 -W 500 $f > /dev/null
rc=$?
if [[ rc -eq 2 ]]; then
echo $f;
fi;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment