Created
December 19, 2013 06:58
-
-
Save ptantiku/8035399 to your computer and use it in GitHub Desktop.
Download top 1000 website's favicon image.
Websites are ranked by Alexa.com
This file contains hidden or 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 | |
wget http://s3.amazonaws.com/alexa-static/top-1m.csv.zip | |
unzip top-1m.csv.zip | |
for l in `head -n 1000 top-1m.csv` | |
do | |
host=`echo -n $l|cut -d, -f2` | |
wget -O "$host.ico" "http://$host/favicon.ico" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment