1
0
mirror of https://github.com/git/git.git synced 2024-10-19 18:48:25 +02:00
git/t/chainlint/multi-line-nested-command-substitution.test

19 lines
139 B
Plaintext
Raw Normal View History

(
foo &&
x=$(
echo bar |
cat
) &&
echo ok
) |
sort &&
(
bar &&
x=$(echo bar |
cat
) &&
y=$(echo baz |
fip) &&
echo fail
)