scripts: use grep -E instead of egrep

egrep is deprecated

Closes #9491
This commit is contained in:
a1346054 2022-09-12 20:21:03 +00:00 committed by Daniel Stenberg
parent d797339202
commit c3a6165307
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
5 changed files with 11 additions and 10 deletions

View file

@ -63,7 +63,7 @@ fi
git -C ../curl-www log --pretty=full --use-mailmap $start..HEAD
fi
) | \
egrep -ai '(^Author|^Commit|by):' | \
grep -Eai '(^Author|^Commit|by):' | \
cut -d: -f2- | \
cut '-d(' -f1 | \
cut '-d<' -f1 | \

View file

@ -55,7 +55,7 @@ cat ./docs/THANKS
fi
) | \
egrep -ai '(^Author|^Commit|by):' | \
grep -Eai '(^Author|^Commit|by):' | \
cut -d: -f2- | \
cut '-d(' -f1 | \
cut '-d<' -f1 | \