1
0
Fork 0
git/t/chainlint/multi-line-nested-command-substitution.expect
Daniel Baumann 54102a2c29
Adding upstream version 1:2.47.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 07:43:39 +02:00

18 lines
185 B
Text

2 (
3 foo &&
4 x=$(
5 echo bar |
6 cat
7 ) &&
8 echo ok
9 ) |
10 sort &&
11 (
12 bar &&
13 x=$(echo bar |
14 cat
15 ) &&
16 y=$(echo baz |
17 fip) &&
18 echo fail
19 )