Skip to content

Commit 84dc82d

Browse files
kxxtgopherbot
authored andcommitted
all: use grep -E/-F instead of fgrep/egrep
egrep and fgrep are obsolescent now. This PR updates all egrep and fgrep commands to grep -E and grep -F. Running egrep/fgrep command with grep v3.8 will output the following warning to stderr: egrep: warning: egrep is obsolescent; using grep -E see also: https://www.phoronix.com/news/GNU-Grep-3.8-Stop-egrep-fgrep https://lists.gnu.org/archive/html/info-gnu/2022-09/msg00001.html Change-Id: I0c6b6a039063d6aee94e8500971001996d4e498c GitHub-Last-Rev: 1eee614 GitHub-Pull-Request: #137 Reviewed-on: https://go-review.googlesource.com/c/sys/+/432835 Reviewed-by: Tobias Klauser <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Reviewed-by: Carlos Amedee <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]> Run-TryBot: Ian Lance Taylor <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent f11e5e4 commit 84dc82d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

plan9/mkerrors.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ errors=$(
126126
signals=$(
127127
echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
128128
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |
129-
egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT)' |
129+
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT' |
130130
sort
131131
)
132132

@@ -136,7 +136,7 @@ echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
136136
sort >_error.grep
137137
echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
138138
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' |
139-
egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT)' |
139+
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT' |
140140
sort >_signal.grep
141141

142142
echo '// mkerrors.sh' "$@"

unix/mkerrors.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ errors=$(
642642
signals=$(
643643
echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
644644
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |
645-
egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |
645+
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' |
646646
sort
647647
)
648648

@@ -652,7 +652,7 @@ echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
652652
sort >_error.grep
653653
echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
654654
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' |
655-
egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |
655+
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' |
656656
sort >_signal.grep
657657

658658
echo '// mkerrors.sh' "$@"

0 commit comments

Comments
 (0)