illumos-port-bash/tests/getopts.sub4

31 lines
535 B
Plaintext
Raw Normal View History

1996-08-27 02:22:31 +08:00
aflag=
bflag=
1997-06-05 22:59:13 +08:00
while getopts :ab: name "$@"
1996-08-27 02:22:31 +08:00
do
case $name in
a) aflag=1 ;;
b) bflag=1
bval=$OPTARG;;
1997-06-05 22:59:13 +08:00
:) echo $0: error: option \`$OPTARG\' requires an argument
echo Usage: $0 [-a] [-b value] args
exit 2;;
?) echo $0: error: illegal option character \`$OPTARG\'
echo Usage: $0 [-a] [-b value] args
1996-08-27 02:22:31 +08:00
exit 2;;
esac
done
if [ ! -z "$aflag" ] ; then echo -a specified ; fi
if [ ! -z "$bflag" ] ; then echo -b $bval specified ; fi
if [ "$OPTIND" -gt 1 ]
then
shift $(( $OPTIND - 1 ))
fi
echo remaining args: "$*"
exit 0