From 9e320df7d762b0a5f92055a2b1c4d04adea3227a Mon Sep 17 00:00:00 2001 From: Morgan Date: Fri, 31 Aug 2018 11:36:44 +0200 Subject: [PATCH] script: get rid of stars char in top authors --- top_authors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/top_authors.sh b/top_authors.sh index 7d2faf7..27164b3 100755 --- a/top_authors.sh +++ b/top_authors.sh @@ -1 +1 @@ -grep http README.md | cut -d '[' -f 2 | cut -d ']' -f 1 | sort | uniq -c | sort -n +grep http README.md | cut -d '[' -f 2 | cut -d ']' -f 1 | sed 's/\*//g' | sort | uniq -c | sort -n