Created SC1110 (markdown)

koalaman
2017-02-25 15:17:38 -08:00
parent 9fdac8faca
commit c0b0baa75d

25
SC1110.md Normal file

@@ -0,0 +1,25 @@
## This is a unicode quote. Delete and retype it (or quote to make literal).
### Problematic code:
```sh
echo hello world
```
### Correct code:
```sh
echo 'hello world'
```
### Rationale:
Some software, like OS X, Word and WordPress, may automatically replace your regular quotes with slanted Unicode quotes. Try deleting and retyping them, and/or disable “smart quotes” in your editor or OS.
### Exceptions
If you want to use typographic single quotes, you can put them in double quotes (or typographic double quotes in single quotes) to make shellcheck ignore them, e.g.,
```sh
printf "Warning: wakeonlan is not installed.\n"
```