repo.or.cz
/
dragonfly.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
sbin/hammer2: Fix usage()
[dragonfly.git]
/
tools
/
regression
/
bin
/
sh
/
set-e
/
for1.0
blob
d0f7d8f6d2c9ae94c3a83f2ef475ff93611e8760
1
# $FreeBSD: head/bin/sh/tests/set-e/for1.0 149791 2005-09-05 09:42:10Z stefanf $
2
set -e
3
f() {
4
for i in a b c; do
5
false
6
true
7
done
8
}
9
f || true