lxsh/test/subshell.sh
2021-12-20 15:59:42 +01:00

10 lines
140 B
Bash

TOTO=toto
(TOTO=tata; echo $TOTO; echo a) | sed 's|a|titi|g'
echo $TOTO
echo a | ( grep a && echo b )
echo ab | ( grep a )
pwd
(cd /)
pwd