git/t/chainlint/nested-subshell.expect

13 lines
92 B
Plaintext
Raw Normal View History

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