]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/getopts9.0
shell_cmds-203.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / getopts9.0
1 # $FreeBSD: head/bin/sh/tests/builtins/getopts9.0 297752 2016-04-09 16:06:13Z jilles $
2
3 args='-ab'
4 getopts ab opt $args
5 printf '%s\n' "$?:$opt:$OPTARG"
6 for dummy in dummy1 dummy2; do
7 getopts ab opt $args
8 printf '%s\n' "$?:$opt:$OPTARG"
9 done