We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dbdb9c commit 44c68a1Copy full SHA for 44c68a1
bash.md
@@ -118,11 +118,12 @@ See: [Unofficial bash strict mode](http://redsymbol.net/articles/unofficial-bash
118
echo {A,B}.js
119
```
120
121
-| Expression | Description |
122
-| ---------- | ------------------- |
123
-| `{A,B}` | Same as `A B` |
124
-| `{A,B}.js` | Same as `A.js B.js` |
125
-| `{1..5}` | Same as `1 2 3 4 5` |
+| Expression | Description |
+| ------------------- | --------------------- |
+| `{A,B}` | Same as `A B` |
+| `{A,B}.js` | Same as `A.js B.js` |
+| `{1..5}` | Same as `1 2 3 4 5` |
126
+| `{{1..3},{7..9}}` | Same as `1 2 3 7 8 9` |
127
128
See: [Brace expansion](https://web.archive.org/web/20230207192110/https://wiki.bash-hackers.org/syntax/expansion/brace)
129
0 commit comments