]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/set-e/for1.0
shell_cmds-198.tar.gz
[apple/shell_cmds.git] / sh / tests / set-e / for1.0
1 # $FreeBSD$
2 set -e
3 f() {
4 for i in a b c; do
5 false
6 true
7 done
8 }
9 f || true