]> git.saurik.com Git - apple/shell_cmds.git/blame - sh/tests/builtins/getopts4.0
shell_cmds-216.60.1.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / getopts4.0
CommitLineData
deb63bfb 1# $FreeBSD: head/bin/sh/tests/builtins/getopts4.0 265616 2014-05-07 21:45:25Z jilles $
71aad674
A
2
3set -- -x
4opt=not
5getopts x opt
6r1=$? OPTIND1=$OPTIND opt1=$opt
7getopts x opt
8r2=$? OPTIND2=$OPTIND
9[ "$r1" = 0 ] && [ "$OPTIND1" = 2 ] && [ "$opt1" = x ] && [ "$r2" != 0 ] &&
10 [ "$OPTIND2" = 2 ]