使用循环解析ksh中的长参数和短参数

Parsing long and short args in ksh using loop

我正在尝试解析 ksh 中的参数。不能像在短选项中一样执行 getopt 我有 two/three 个字符。目前我正在使用 for 循环。它很愚蠢,但找不到更好的东西。

问:如何将option+value设置为一个单元进行解析? 另外,如果 eval set -- $option 会帮助我,那么我该如何使用它? echo on option 没有在末尾显示预期的“--”。我是不是猜错了?

我正在考虑使用变量来跟踪何时找到选项,但这种方法似乎太混乱且没有必要。

感谢您的宝贵时间和帮助。

更新 1: 如指出的那样添加代码。感谢 markp、Andre Gelinas 和随机投票者让这个问题变得更好。尝试执行代码第 2 行和第 3 行中给出的脚本 - 或一起传递的短选项和长选项的任何其他组合。

#!/bin/ksh
# bash script1.sh --one 123 --two 234 --three "some string"
# bash script1.sh -o 123 -t 234 -th "some string"

# the following creates problems for short options. 
#options=$(getopt -o o:t:th: -l one:two:three: "--" "$@")

#Since the below `eval set -- "$options"` did not append "--" at the end
#eval set -- "$options"

for i in $@; do
    options="$options $i"
done
options="$options --"

# TODO capture args into variables

到目前为止在 TODO 下面尝试的代码:

for i in $options; do
    echo $i
done

将使用以下方法捕获参数:

while true; do
    case  in
        --one|-o) shift; ONE=
        ;;
        --two|-t) shift; TWO=
        ;;
        --three|-th) shift; THREE=
        ;;
        --) shift; break
        ;;
    esac
done

尝试这样的事情:

#!/bin/ksh

#Default value
ONE=123
TWO=456


# getopts configuration
USAGE="[-author?Andre Gelinas <andre.gelinas@foo.bar>]"
USAGE+="[-copyright?2018]"
USAGE+="[+NAME?TestGetOpts.sh]"
USAGE+="[+DESCRIPTION?Try out for GetOps]"
USAGE+="[o:one]#[one:=$ONE?First.]"
USAGE+="[s:second]#[second:=$TWO?Second.]"
USAGE+="[t:three]:[three?Third.]"
USAGE+=$'[+SEE ALSO?\aman\a(1), \aGetOpts\a(1)]'

while getopts "$USAGE" optchar ; do
    case $optchar in
                o)  ONE=$OPTARG ;;
                s)  TWO=$OPTARG ;;
                t)  THREE=$OPTARG ;;
    esac
done

print "ONE = "$ONE
print "TWO = "$TWO
print "THREE = "$THREE

您可以使用--one 或-o。使用 --man 或 --help 也有效。此外 -o 和 -s 仅是数字,但 -t 将接受任何内容。希望对您有所帮助。