summaryrefslogtreecommitdiff
path: root/t/chainlint/while-loop.expect
blob: e2813b378e8165e72ed9dfa4777154219e24c627 (plain)
1
2
3
4
5
6
7
8
9
10
11
(
	while true
	do
		echo foo ?!AMP?!
		cat
	done ?!AMP?!
	while true; do
		echo foo &&
		cat bar
	done
)