Sign in
googlers
/
jrn
/
git
/
15664a5f35b6db8077e3e8aeb377e72f0f95e23e
/
.
/
t
/
chainlint
/
nested-subshell.test
blob: 998b05a47d300570faf8ff16b584517677a21567 [
file
] [
log
] [
blame
]
(
cd foo
&&
(
echo a
&&
echo b
)
>
file
&&
cd foo
&&
(
# LINT: nested multi-line subshell not presently checked for missing "&&"
echo a
echo b
)
>
file
)