Skip to content

Instantly share code, notes, and snippets.

@kozhin
Created July 4, 2021 14:44
Show Gist options
  • Save kozhin/aa925560242853a0b5fb705112f35b41 to your computer and use it in GitHub Desktop.
Save kozhin/aa925560242853a0b5fb705112f35b41 to your computer and use it in GitHub Desktop.
Fetch IP addresses for Akamai host
#!/bin/bash
temp="/tmp/temp.log"
output="/tmp/uniq.log"
dig lolstatic-a.akamaihd.net +short | \
awk '/((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(\.|$)){4}/ { print $1 }' >> $temp
while IFS= read -r line
do
exists=$(cat $output | grep $line | wc -l | awk '/[0-9]/ { print $1 }')
if [[ "$exists" == "0" ]]; then
echo "$line" >> $output
echo "$line added"
fi
done < "$temp"
rm $temp
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment