Home | History | Annotate | Download | only in tools

Lines Matching refs:opt

187     local opt text abstract default
200 for opt in $OPTIONS; do
201 text=`option_get_attr $opt text | awk "$AWK_SCRIPT"`
202 abstract=`option_get_attr $opt abstract`
203 default=`option_get_attr $opt default`
227 local opt optname otype value name fin funcname
245 opt=`expr -- "$1" : '^\(--[^=]*\)=.*$'`
246 if [ -n "$opt" ] ; then
253 opt=`expr -- "$1" : '^\(--.*\)$'`
254 if [ -n "$opt" ] ; then
261 opt=`expr -- "$1" : '^\(-[A-Za-z0-9]\)..*$'`
262 if [ -n "$opt" ] ; then
269 opt=`expr -- "$1" : '^\(-.\)$'`
270 if [ -n "$opt" ] ; then
280 #echo "Found opt='$opt' otype='$otype' value='$value'"
282 name=`dashes_to_underscores $opt`
296 option_panic_no_args $opt
300 option_panic_missing_arg $opt
306 option_panic_no_args $opt
309 option_panic_missing_arg $opt
318 echo "ERROR: Unknown option '$opt'. See --help for usage."