-
Notifications
You must be signed in to change notification settings - Fork 1.9k
SC1001
Vidar Holen edited this page Jan 21, 2015
·
10 revisions
echo Yay \o/
or
\git status
echo 'Yay \o/'
or
command git status
Escaping something that doesn't need escaping sometimes indicates a bug.
If the backslash was supposed to be literal, single quote it.
If the purpose is to run an external command rather than an alias, prefer command.
If you have an alias and a function (as opposed to an external command), you can either ignore this message or use "name" instead of \name to quiet ShellCheck.