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