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