Sign in
googlers
/
jrn
/
git
/
906fc557b70b2b2995785c9b37e212d2f86b469e
/
.
/
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
)