mirror of
https://github.com/tiyn/wiki.git
synced 2025-04-04 07:47:45 +02:00
shell: added bracket expansions
This commit is contained in:
parent
db800ba416
commit
334984c91e
@ -24,6 +24,29 @@ The following is a list of Unix shells that are POSIX compliant.
|
|||||||
This section addresses various different functions by and actions that can be
|
This section addresses various different functions by and actions that can be
|
||||||
taken with shell commands.
|
taken with shell commands.
|
||||||
|
|
||||||
|
### Expansion
|
||||||
|
|
||||||
|
This section is based on the
|
||||||
|
[TLDP Bash guide for beginners](https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_04.html).
|
||||||
|
Although it is centered on Bash it can also be used in other shells (Zsh) while being unsupported
|
||||||
|
by others (DASH).
|
||||||
|
|
||||||
|
In most shells curly braces can be used to expand a term.
|
||||||
|
Commands can be expanded like the following example.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
echo sp{el,il,al}l
|
||||||
|
```
|
||||||
|
|
||||||
|
The previous command will expand to the following command.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
echo spell spill spall
|
||||||
|
```
|
||||||
|
|
||||||
|
The example shows a brace expansions of depth `1`.
|
||||||
|
Using multiple curly brace pairs the depth can be increased as needed.
|
||||||
|
|
||||||
### For Loops
|
### For Loops
|
||||||
|
|
||||||
For loops can be especially useful when scripting.
|
For loops can be especially useful when scripting.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user