World4You shellcheck

This commit is contained in:
Lorenz Stechauner 2020-11-27 19:35:53 +01:00
parent 9449501537
commit f9dfd3b348

View File

@ -160,10 +160,10 @@ _login() {
_ggrep() { _ggrep() {
if _exists "ggrep"; then if _exists "ggrep"; then
ggrep $@ ggrep "$@"
return $? return $?
else else
grep $@ grep "$@"
return $? return $?
fi fi
} }