Updated SC2086 (markdown)

Tamaranch
2018-08-27 11:11:21 +02:00
parent 9c95c853d4
commit f313ece4f7

@@ -85,9 +85,9 @@ This is better than an unquoted value because the alternative value can be prope
Here are two common cases where this warning seems unnecessary but may still be beneficial:
```
```sh
cmd <<< $var # Requires quoting on Bash 3 (but not 4+)
: ${var=default} # Should be quoted to avoid DoS when `var='*/*/*/*/*/*`
: ${var=default} # Should be quoted to avoid DoS when var='*/*/*/*/*/*'
```
---