Updated SC1001 (markdown)

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

@@ -4,23 +4,13 @@
```sh ```sh
echo Yay \o/ echo Yay \o/
``` \git status # Non-POSIX way to suppress aliases
or
```sh
\git status
``` ```
### Correct code: ### Correct code:
```sh ```sh
echo 'Yay \o/' echo 'Yay \o/'
```
or
```sh
command git status command git status
``` ```
@@ -34,4 +24,4 @@ If the purpose is to run an external command rather than an alias, prefer `comma
### Exceptions ### 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.