script: get rid of stars char in top authors

This commit is contained in:
Morgan 2018-08-31 11:36:44 +02:00 committed by GitHub
parent 664761e81a
commit 9e320df7d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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