mirror of
https://github.com/flokoe/bash-hackers-wiki.git
synced 2024-11-01 23:03:05 +01:00
b75c3a588b
find docs/ -depth 3 -name '*.md' | xargs grep '(.*/' -l | \ xargs -I{} \ sed -i '' \ -e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)\(.md\)\{0\})%(../../\1/\2.md)%g' \ -e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)#\([a-zA-Z_-][0-9a-zA-Z_-]*\))%(../../\1/\2.md#\3)%g' \ -e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)\(.md\)\{0\})%(../../\1/\2/\3.md)%g' \ -e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)#\([a-zA-Z_-][0-9a-zA-Z_-]*\))%(../../\1/\2/\3.md#\4)%g' \ -e 's%](\([^:.>)#][^:.>)#]*\))%](../../\1.md)%g' \ -e 's%](\([^:.>)#][^:.>)#]*\)#\([^:.>)#][^:.>)#]*\))%](../../\1.md#\2)%g' \ {} Related to https://github.com/flokoe/bash-hackers-wiki/issues/10
36 lines
744 B
Markdown
36 lines
744 B
Markdown
# Grouping commands in a subshell
|
|
|
|
## Synopsis
|
|
|
|
( <LIST> )
|
|
|
|
## Description
|
|
|
|
The [list](../../syntax/basicgrammar.md#lists) `<LIST>` is executed in a
|
|
separate shell - a subprocess. No changes to the environment (variables
|
|
etc\...) are reflected in the \"main shell\".
|
|
|
|
## Examples
|
|
|
|
Execute a command in a different directory.
|
|
|
|
``` bash
|
|
echo "$PWD"
|
|
( cd /usr; echo "$PWD" )
|
|
echo "$PWD" # Still in the original directory.
|
|
```
|
|
|
|
## Portability considerations
|
|
|
|
- The subshell compound command is specified by POSIX.
|
|
- Avoid ambiguous syntax.
|
|
|
|
``` bash
|
|
(((1+1))) # Equivalent to: (( (1+1) ))
|
|
```
|
|
|
|
## See also
|
|
|
|
- [grouping commands](../../syntax/ccmd/grouping_plain.md)
|
|
- [Subshells on Greycat\'s wiki](http://mywiki.wooledge.org/SubShell)
|