Skip to content

Instantly share code, notes, and snippets.

@drsnyder
Created June 13, 2012 20:43
Show Gist options
  • Select an option

  • Save drsnyder/2926408 to your computer and use it in GitHub Desktop.

Select an option

Save drsnyder/2926408 to your computer and use it in GitHub Desktop.
Get site ipaddresses
#!/bin/bash
for host in `cat /etc/huddler/site-config.txt | grep -v ^# | awk '{ print $2 }' | sed "s/www\.//"`; do
echo -n "$host: ";
dig $host a +short | tail -1;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment