git/t/chainlint/for-loop.expect

12 lines
135 B
Text
Raw Normal View History

(
for i in a b c
do
echo $i ?!AMP?!
cat <<-EOF ?!LOOP?!
done ?!AMP?!
for i in a b c; do
echo $i &&
cat $i ?!LOOP?!
done
)