Sign in
googlers
/
jrn
/
git
/
41771fa435a44ff8be3f23753bde0309a2a65b03
/
.
/
t
/
chainlint
/
nested-subshell.test
blob: 440ee9992da3491a85fae254bdb7eb14176d4a29 [
file
] [
log
] [
blame
]
Eric Sunshine
bb4efbc
2018-07-11 02:46:38 -0400
[
diff
] [
blame
]
1
(
2
cd foo
&&
3
(
4
echo a
&&
5
echo b
6
)
>
file
&&
7
8
cd foo
&&
9
(
Eric Sunshine
bb4efbc
2018-07-11 02:46:38 -0400
[
diff
] [
blame
]
10
echo a
11
echo b
12
)
>
file
13
)