mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-05 23:22:25 +00:00
replace egrep with grep -E for less warnings
This commit is contained in:
parent
d005317424
commit
7691293a5b
1 changed files with 2 additions and 2 deletions
|
|
@ -14,8 +14,8 @@
|
|||
changes="0"
|
||||
find "$1" -type f -print0 | while IFS= read -r -d '' f; do
|
||||
fn=$(basename "$f")
|
||||
egrep -v -f ../../src/tools/make/ignore "$f" >$fn.old
|
||||
egrep -v -f ../../src/tools/make/ignore $fn >$fn.new
|
||||
grep -E -v -f ../../src/tools/make/ignore "$f" >$fn.old
|
||||
grep -E -v -f ../../src/tools/make/ignore $fn >$fn.new
|
||||
if ! diff -U 2 -b $fn.old $fn.new >$fn.diff; then
|
||||
echo ""
|
||||
echo ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue