add script to list top domains

This commit is contained in:
MorganGeek 2018-08-29 14:05:56 +02:00
parent ddb148727d
commit e24967ea58

1
top_domains.sh Normal file
View File

@ -0,0 +1 @@
cat README.md | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | awk -F/ '{print $3}' | sort | uniq -c | sort -n