mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-14 16:36:30 +00:00
8 lines
122 B
Bash
8 lines
122 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
grep -v '^#' "$@" | \
|
||
|
xargs -n1 nslookup | \
|
||
|
awk '/Address: +/ {print $2;}' | \
|
||
|
sort | \
|
||
|
uniq
|