for-loop.expect   [plain text]


(
	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
>)