From 30f4f73611f601b35514b59025bd7cc4244a3486 Mon Sep 17 00:00:00 2001 From: MorganGeek Date: Fri, 3 Nov 2017 15:35:53 +0100 Subject: [PATCH] add script for counting links --- count_links.sh | 1 + 1 file changed, 1 insertion(+) create mode 100755 count_links.sh diff --git a/count_links.sh b/count_links.sh new file mode 100755 index 0000000..aa1be78 --- /dev/null +++ b/count_links.sh @@ -0,0 +1 @@ +cat README.md | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | sort -u | wc -l