Updated SC2039 (markdown)

Mingye Wang
2015-09-18 23:51:30 -04:00
parent da13252661
commit ca9271101b

@@ -10,7 +10,7 @@ For help with rewrites, the Ubuntu wiki has [a list of portability issues](https
### `$'c-style-escapes'` ### `$'c-style-escapes'`
Bashism: bash, ksh:
```Bash ```Bash
a=$' \t\n' a=$' \t\n'
@@ -26,7 +26,7 @@ Want some good news? See http://austingroupbugs.net/view.php?id=249.
### `$"msgid"` ### `$"msgid"`
Bashism: Bash:
```Bash ```Bash
echo $"foo $(bar) baz" echo $"foo $(bar) baz"
@@ -93,7 +93,7 @@ done
### Here-strings ### Here-strings
Bash: Bash, ksh:
```Bash ```Bash
grep aaa <<< "$g" grep aaa <<< "$g"