Skip to content

Instantly share code, notes, and snippets.

@alexmnv
Created February 26, 2015 06:35
Show Gist options
  • Save alexmnv/01260e9708a2ef2c786c to your computer and use it in GitHub Desktop.
Save alexmnv/01260e9708a2ef2c786c to your computer and use it in GitHub Desktop.
xargs multithreaded nslookup
(echo google.com; echo yandex.ru; echo mail.ru) | xargs -I DOMAIN --max-procs=10 -n 1 nslookup DOMAIN | awk '/^Address: / { print $2 }; /^Name/ { print $2 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment