]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/for-loop.expect
submodule-config.c: strengthen URL fsck check
[thirdparty/git.git] / t / chainlint / for-loop.expect
1 (
2 for i in a b c
3 do
4 echo $i ?!AMP?!
5 cat <<-\EOF ?!LOOP?!
6 bar
7 EOF
8 done ?!AMP?!
9 for i in a b c; do
10 echo $i &&
11 cat $i ?!LOOP?!
12 done
13 )