From: Daniel Stenberg Date: Mon, 25 Aug 2014 21:09:23 +0000 (+0200) Subject: contributors: grep and sort case insensitively X-Git-Tag: curl-7_38_0~50 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dfd821c738186306551171b870cecb3dac8373a3;p=thirdparty%2Fcurl.git contributors: grep and sort case insensitively --- diff --git a/contributors.sh b/contributors.sh index 41f9cb1588..153fec9e16 100755 --- a/contributors.sh +++ b/contributors.sh @@ -39,12 +39,12 @@ fi # sort all unique names # awk them into RELEASE-NOTES format git log $start..HEAD | \ -egrep '(Author|Commit|by):' | \ +egrep -i '(Author|Commit|by):' | \ cut -d: -f2- | \ cut '-d<' -f1 | \ sed -e 's/^ //' -e 's/ $//g' | \ grep ' ' | \ -sort -u | +sort -fu | awk '{ num++; n = sprintf("%s%s%s,", n, length(n)?" ":"", $0);