]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/return8.0
shell_cmds-207.100.1.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / return8.0
1 # $FreeBSD: head/bin/sh/tests/builtins/return8.0 255215 2013-09-04 22:10:16Z jilles $
2
3 if [ "$1" = nested ]; then
4 return 17
5 fi
6
7 f() {
8 set -- nested
9 . "$0"
10 return $(($? ^ 1))
11 }
12 f
13 exit $(($? ^ 16))