mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-10-03 19:29:44 +08:00
Created SC3009 (markdown)
9
SC3009.md
Normal file
9
SC3009.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
In POSIX `sh`, brace expansion is undefined.
|
||||||
|
|
||||||
|
Problematic code:
|
||||||
|
```
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
for i in {1..5}; do ...
|
||||||
|
```
|
||||||
|
Here, `$i` expands to `{1..5}`. It does not exand to the sequence `1 2 3 4 5`
|
Reference in New Issue
Block a user