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