Brace Ranges Are Invalid
- The exclusive range syntax (
..
) is incorrect.echo {1..5}
should print1 2 3 4
. - Inclusive ranges (
...
) aren't working.echo {1...5}
should print1 2 3 4 5
..
) is incorrect. echo {1..5}
should print 1 2 3 4
....
) aren't working. echo {1...5}
should print 1 2 3 4 5