mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
8 lines
134 B
Text
8 lines
134 B
Text
# $FreeBSD$
|
|
|
|
set -- -yz -wx
|
|
opt=wrong1 OPTARG=wrong2
|
|
while getopts :x opt; do
|
|
echo "$opt:${OPTARG-unset}"
|
|
done
|
|
echo "OPTIND=$OPTIND"
|