top_authors ignores case
This commit is contained in:
parent
33ea0997db
commit
d635799899
@ -9,6 +9,6 @@ function fetch_top_authors() {
|
|||||||
basedir=$(dirname "$0")
|
basedir=$(dirname "$0")
|
||||||
filter="${1:-}"
|
filter="${1:-}"
|
||||||
|
|
||||||
grep http "$basedir/README.md" | grep "${filter}" | cut -d '[' -f 2 | cut -d ']' -f 1 | sed 's/\*//g' | grep -v "/" | sort | uniq -c | sort -n
|
grep http "$basedir/README.md" | grep -i "${filter}" | cut -d '[' -f 2 | cut -d ']' -f 1 | sed 's/\*//g' | grep -v "/" | sort | uniq -c | sort -n
|
||||||
}
|
}
|
||||||
fetch_top_authors "$@"
|
fetch_top_authors "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user