World4You shellcheck

This commit is contained in:
Lorenz Stechauner 2020-11-27 19:35:53 +01:00
parent bb3cc1130b
commit 268eaddad8

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
} }