Merge pull request #403 from Neilpang/dev

fix egrep performance
This commit is contained in:
neil 2016-11-18 20:27:29 +08:00 committed by GitHub
commit 5bba9bddfd
1 changed files with 1 additions and 3 deletions

View File

@ -349,10 +349,8 @@ _sed_i() {
}
_egrep_o() {
if _contains "$(egrep -o 2>&1)" "egrep: illegal option -- o"; then
if ! egrep -o "$1" 2>/dev/null; then
sed -n 's/.*\('"$1"'\).*/\1/p'
else
egrep -o "$1"
fi
}