mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-10-03 19:29:44 +08:00
Updated SC2086 (markdown)
@@ -83,6 +83,15 @@ 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:
|
||||||
|
|
||||||
|
```
|
||||||
|
cmd <<< $var # Requires quoting on Bash 3 (but not 4+)
|
||||||
|
: ${var=default} # Should be quoted to avoid DoS when `var='*/*/*/*/*/*`
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
As always, this warning can be [[ignore]]d on a case-by-case basis.
|
As always, this warning can be [[ignore]]d on a case-by-case basis.
|
||||||
|
|
||||||
this is especially relevant when BASH many not be available for the array work around.
|
this is especially relevant when BASH many not be available for the array work around.
|
||||||
|
Reference in New Issue
Block a user