Skip to content

Instantly share code, notes, and snippets.

@opexxx
Forked from ptantiku/favicon_download.sh
Last active October 25, 2019 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save opexxx/884cf108e26b77229ba27c035acee359 to your computer and use it in GitHub Desktop.
Save opexxx/884cf108e26b77229ba27c035acee359 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 `cat top-1m.csv | cut -d',' -f2`
do
aquatone-discover -d $l --threads 90
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment