]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/set-e/until3.0
shell_cmds-203.tar.gz
[apple/shell_cmds.git] / sh / tests / set-e / until3.0
1 # $FreeBSD: head/bin/sh/tests/set-e/until3.0 149791 2005-09-05 09:42:10Z stefanf $
2 set -e
3 f() {
4 until false; do
5 false
6 break
7 done
8 }
9 f || true