Skip to content

Instantly share code, notes, and snippets.

@Kagee
Created February 3, 2012 13:12
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 Kagee/1730122 to your computer and use it in GitHub Desktop.
Save Kagee/1730122 to your computer and use it in GitHub Desktop.
manager:~/scripts# cat foreach_host.sh
for hostname in $(cat /etc/hosts | awk '{print $NF}'); do echo "Working on hostname: $hostname"; $1; done;
manager:~/scripts# ./foreach_host.sh 'nc $hostname 4949'
Working on hostname: manager
$hostname: forward host lookup failed: Unknown host
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment