Newer
Older
ubixos / bin / sh / tests / builtins / getopts9.0
@Charlie Root Charlie Root on 16 Jan 2018 250 bytes BSD Shell
# $FreeBSD: releng/11.1/bin/sh/tests/builtins/getopts9.0 297752 2016-04-09 16:06:13Z jilles $

args='-ab'
getopts ab opt $args
printf '%s\n' "$?:$opt:$OPTARG"
for dummy in dummy1 dummy2; do
	getopts ab opt $args
	printf '%s\n' "$?:$opt:$OPTARG"
done