Skip to content

Instantly share code, notes, and snippets.

@nestoru
Created April 9, 2014 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nestoru/10289125 to your computer and use it in GitHub Desktop.
Save nestoru/10289125 to your computer and use it in GitHub Desktop.
Ping multiple hosts from a file
echo yahoo.com > hosts
echo google.com >> hosts
for host in `cat hosts` do; ping $host; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment