Skip to content

Instantly share code, notes, and snippets.

@ptantiku
Created December 19, 2013 06:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ptantiku/8035399 to your computer and use it in GitHub Desktop.
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
#!/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