Sign in
code
/
git
/
4527ecdc8d0c5117137925afadf877125c873d3e
/
.
/
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
)