World4You shellcheck

This commit is contained in:
Lorenz Stechauner 2020-11-27 19:35:53 +01:00
parent 9449501537
commit f9dfd3b348
1 changed files with 2 additions and 2 deletions

View File

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