]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/eval7.0
shell_cmds-203.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / eval7.0
1 # $FreeBSD: head/bin/sh/tests/builtins/eval7.0 272983 2014-10-12 13:12:06Z jilles $
2 # Assumes that break can break out of a loop outside eval.
3
4 while :; do
5 eval "break
6 echo bad1"
7 echo bad2
8 exit 3
9 done