From e24967ea5874d462160f22b7c6fc7539ce453ebd Mon Sep 17 00:00:00 2001 From: MorganGeek Date: Wed, 29 Aug 2018 14:05:56 +0200 Subject: [PATCH] add script to list top domains --- top_domains.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 top_domains.sh diff --git a/top_domains.sh b/top_domains.sh new file mode 100644 index 0000000..d5d0895 --- /dev/null +++ b/top_domains.sh @@ -0,0 +1 @@ +cat README.md | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | awk -F/ '{print $3}' | sort | uniq -c | sort -n