git/t/chainlint/nested-subshell.test

14 lines
93 B
Plaintext

(
cd foo &&
(
echo a &&
echo b
) >file &&
cd foo &&
(
echo a
echo b
) >file
)