tvl-depot/third_party/git/t/chainlint/for-loop.expect
2020-01-11 23:40:29 +00:00

11 lines
109 B
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
>)