Created
July 4, 2021 14:44
-
-
Save kozhin/aa925560242853a0b5fb705112f35b41 to your computer and use it in GitHub Desktop.
Fetch IP addresses for Akamai host
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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