summaryrefslogtreecommitdiff
path: root/t/chainlint/for-loop.expect
blob: c33cf56ee73ab7b75c4194d842443d019fa08440 (plain)
1
2
3
4
5
6
7
8
9
10
11
(
	for i in a b c
	do
?!AMP?!		echo $i
		cat
?!AMP?!	done
	for i in a b c; do
		echo $i &&
		cat $i
	done
>)