]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/varenv8.sub
Bash-4.4 distribution sources and documentation
[thirdparty/bash.git] / tests / varenv8.sub
CommitLineData
a0c0a00f
CR
1FOO=bar cat < <(echo $FOO:1; echo $FOO:2)
2echo after: --${FOO}--
3
4unset FOO
5FOO=global
6
7FOO=bar cat < <(echo $FOO:1; echo $FOO:2)
8echo after: --${FOO}--
9
10unset FOO
11FOO=bar read x < <(echo -n $FOO:1; echo $FOO:2)
12echo after: --${FOO}--
13echo x = $x
14