git/t/chainlint/while-loop.expect

15 lines
144 B
Plaintext

(
while true
do
echo foo ?!AMP?!
cat <<-\EOF ?!LOOP?!
bar
EOF
done ?!AMP?!
while true; do
echo foo &&
cat bar ?!LOOP?!
done
)