Updated SC1001 (markdown)

Mingye Wang
2015-10-04 01:36:35 -04:00
parent 531115dab5
commit 5df59ef262

@@ -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.