blob: 319e6290a2d125346b535bc133966d0c70e5ada9 (
plain)
1
2
3
4
5
6
7
8
|
# Subshell
* A subshell may be created by any of the following:
* `(.)`
* command substitution: `$(.)`, `` `.` ``
* process substitution: `<(.)`, `>(.)`
* `bash(1)` does not talk of a subshell here, but this seems to work
similarly to `$(.)`.
|