From f704d6bf0007e158405dd27fcffb21bb8095a36a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 23 May 2016 09:13:43 +0200 Subject: contributors.sh: better grep pattern, use grep -a --- scripts/contributors.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/contributors.sh b/scripts/contributors.sh index 071251524..d62baade6 100755 --- a/scripts/contributors.sh +++ b/scripts/contributors.sh @@ -45,20 +45,20 @@ fi # awk them into RELEASE-NOTES format ( git log $start..HEAD | \ -egrep -i '(Author|Commit|by):' | \ +egrep -ai '(^Author|^Commit|by):' | \ cut -d: -f2- | \ cut '-d<' -f1 | \ tr , '\012' | \ sed 's/ and /\n/' | \ sed -e 's/^ //' -e 's/ $//g' -e 's/@users.noreply.github.com$/ on github/' -grep "^ [^ \(]" RELEASE-NOTES| \ +grep -a "^ [^ \(]" RELEASE-NOTES| \ sed 's/, */\n/g'| \ sed 's/^ *//' )| \ sed -f ./docs/THANKS-filter | \ -grep ' ' | \ +grep -a ' ' | \ sort -fu | \ awk '{ num++; -- cgit v1.2.3