]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/for-loop.expect
Merge branch 'vd/fsck-submodule-url-test'
[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
10 for i in a b c; do
11 echo $i &&
12 cat $i ?!LOOP?!
13 done
14 )