summaryrefslogtreecommitdiff
path: root/t/chainlint/multi-line-nested-command-substitution.expect
blob: ad27e43e057ba37e1dc0f832f0a7b66e7a3bb548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 )