mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 11:35:00 -05:00
bfd6d22be2
Allow command-line options to accept multiple arguments without additional quoting by taking the list of arguments until one starting with a "-" is reached. The only current use of this is the --pkg option in makepkg. This allows (e.g.) makepkg --pkg foo bar and packages "foo" and "bar" will be built. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
105 lines
2.4 KiB
Bash
105 lines
2.4 KiB
Bash
# getopt like parser
|
|
parse_options() {
|
|
local short_options=$1; shift;
|
|
local long_options=$1; shift;
|
|
local ret=0;
|
|
local unused_options=""
|
|
local i
|
|
|
|
while [[ -n $1 ]]; do
|
|
if [[ ${1:0:2} = '--' ]]; then
|
|
if [[ -n ${1:2} ]]; then
|
|
local match=""
|
|
for i in ${long_options//,/ }; do
|
|
if [[ ${1:2} = ${i//:} ]]; then
|
|
match=$i
|
|
break
|
|
fi
|
|
done
|
|
if [[ -n $match ]]; then
|
|
local needsargument=0
|
|
|
|
[[ ${match} = ${1:2}: ]] && needsargument=1
|
|
[[ ${match} = ${1:2}:: && -n $2 && ${2:0:1} != "-" ]] && needsargument=1
|
|
|
|
if (( ! needsargument )); then
|
|
printf ' %s' "$1"
|
|
else
|
|
if [[ -n $2 ]]; then
|
|
printf ' %s ' "$1"
|
|
shift
|
|
printf "'%q" "$1"
|
|
while [[ -n $2 && ${2:0:1} != "-" ]]; do
|
|
shift
|
|
printf " %q" "$1"
|
|
done
|
|
printf "'"
|
|
else
|
|
printf "@SCRIPTNAME@: $(gettext "option %s requires an argument\n")" "'$1'" >&2
|
|
ret=1
|
|
fi
|
|
fi
|
|
else
|
|
echo "@SCRIPTNAME@: $(gettext "unrecognized option") '$1'" >&2
|
|
ret=1
|
|
fi
|
|
else
|
|
shift
|
|
break
|
|
fi
|
|
elif [[ ${1:0:1} = '-' ]]; then
|
|
for ((i=1; i<${#1}; i++)); do
|
|
if [[ $short_options =~ ${1:i:1} ]]; then
|
|
local needsargument=0
|
|
|
|
[[ $short_options =~ ${1:i:1}: && ! $short_options =~ ${1:i:1}:: ]] && needsargument=1
|
|
[[ $short_options =~ ${1:i:1}:: && \
|
|
( -n ${1:$i+1} || ( -n $2 && ${2:0:1} != "-" ) ) ]] && needsargument=1
|
|
|
|
if (( ! needsargument )); then
|
|
printf ' -%s' "${1:i:1}"
|
|
else
|
|
if [[ -n ${1:$i+1} ]]; then
|
|
printf ' -%s ' "${1:i:1}"
|
|
printf "'%q" "${1:$i+1}"
|
|
while [[ -n $2 && ${2:0:1} != "-" ]]; do
|
|
shift
|
|
printf " %q" "$1"
|
|
done
|
|
printf "'"
|
|
else
|
|
if [[ -n $2 ]]; then
|
|
printf ' -%s ' "${1:i:1}"
|
|
shift
|
|
printf "'%q" "$1"
|
|
while [[ -n $2 && ${2:0:1} != "-" ]]; do
|
|
shift
|
|
printf " %q" "$1"
|
|
done
|
|
printf "'"
|
|
|
|
else
|
|
printf "@SCRIPTNAME@: $(gettext "option %s requires an argument\n")" "'-${1:i:1}'" >&2
|
|
ret=1
|
|
fi
|
|
fi
|
|
break
|
|
fi
|
|
else
|
|
echo "@SCRIPTNAME@: $(gettext "unrecognized option") '-${1:i:1}'" >&2
|
|
ret=1
|
|
fi
|
|
done
|
|
else
|
|
unused_options="${unused_options} '$1'"
|
|
fi
|
|
shift
|
|
done
|
|
|
|
printf " --"
|
|
[[ $unused_options ]] && printf ' %s' "${unused_options[@]}"
|
|
[[ $1 ]] && printf " '%s'" "$@"
|
|
printf "\n"
|
|
|
|
return $ret
|
|
} |