repo.or.cz
/
git
/
raj.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
dir: fix treatment of negated pathspecs
[git/raj.git]
/
t
/
chainlint
/
exit-loop.expect
blob
84d8bdebc02660d3a4ad0aeb341a9f991547b46c
1
(
2
for i in a b c
3
do
4
foo || exit 1
5
bar &&
6
baz
7
done
8
>) &&
9
(
10
while true
11
do
12
foo || exit 1
13
bar &&
14
baz
15
done
16
>) &&
17
(
18
i=0 &&
19
while test $i -lt 10
20
do
21
echo $i || exit
22
i=$(($i + 1))
23
done
24
>)