Skip to content
Commit 59d59a17 authored by Igor Kushnir's avatar Igor Kushnir
Browse files

bash-completions: egrep => `grep -E`

Typing in a terminal emulator `kdevelop -s`, then pressing Tab prints
the following warning:
    egrep: warning: egrep is obsolescent; using grep -E

The two commands are equivalent, at least on Manjaro:
    $ cat /usr/bin/egrep
    cmd=${0##*/}
    echo "$cmd: warning: $cmd is obsolescent; using grep -E" >&2
    exec grep -E "$@"
parent e7f54a63
Pipeline #306084 passed with stage
in 19 minutes and 47 seconds
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment