20 lines
204 B
Text
20 lines
204 B
Text
test_expect_success 'multi-line-nested-command-substitution' '
|
|
(
|
|
foo &&
|
|
x=$(
|
|
echo bar |
|
|
cat
|
|
) &&
|
|
echo ok
|
|
) |
|
|
sort &&
|
|
(
|
|
bar &&
|
|
x=$(echo bar |
|
|
cat
|
|
) &&
|
|
y=$(echo baz |
|
|
fip) &&
|
|
echo fail
|
|
)
|
|
'
|