diff --git a/SC1001.md b/SC1001.md index 1d66acd..1034cb2 100644 --- a/SC1001.md +++ b/SC1001.md @@ -4,23 +4,13 @@ ```sh echo Yay \o/ -``` - -or - -```sh -\git status +\git status # Non-POSIX way to suppress aliases ``` ### Correct code: ```sh echo 'Yay \o/' -``` - -or - -```sh command git status ``` @@ -34,4 +24,4 @@ If the purpose is to run an external command rather than an alias, prefer `comma ### Exceptions -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. +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. \ No newline at end of file