summaryrefslogtreecommitdiffstats
path: root/t/chainlint/while-loop.expect
blob: 1f5eaea0fd59757ea78b7dc0b24ec0971c2faa36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(
	while true
	do
		echo foo ?!AMP?!
		cat <<-\EOF ?!LOOP?!
		bar
		EOF
	done ?!AMP?!
	while true; do
		echo foo &&
		cat bar ?!LOOP?!
	done
)