]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/while-loop.expect
Merge branch 'rs/parse-options-with-keep-unknown-abbrev-fix'
[thirdparty/git.git] / t / chainlint / while-loop.expect
1 (
2 while true
3 do
4 echo foo ?!AMP?!
5 cat <<-\EOF ?!LOOP?!
6 bar
7 EOF
8 done ?!AMP?!
9
10 while true; do
11 echo foo &&
12 cat bar ?!LOOP?!
13 done
14 )