8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

如何在 bash 中多次调用 getopts

RaytheonXie-MSFT 1月前

23 0

我有一个通用库,用于在多个脚本中解析命令行选项,但是我也希望我的个人脚本也能够处理参数...例如common.sh:func...

我有一个通用库,用于从多个脚本解析命令行选项,但我还希望我的各个脚本也能够处理参数...例如

通用.sh:

function get_options {
    echo -e "in getoptions"
    echo $OPTIND
    while getopts ":ab:" optionName; do
       [ ... processing code ... ]
    done
}

. ./common.sh

function get_local_options {
    echo -e "in getoptions"
    echo $OPTIND
    while getopts ":xy:" optionName; do
       [ ... processing code ... ]
    done
}

get_local_options $*
OPTIND=1
get_options $*

问题是,如果我用以下命令调用 a.sh:

a.sh -x -y foo -a -b bar

get_options 在 \'foo\' 处停止处理,因为它在第一个 \'非选项\' 处停止

有什么办法可以解决这个问题而不用自己重写吗?

帖子版权声明 1、本帖标题:如何在 bash 中多次调用 getopts
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由RaytheonXie-MSFT在本站《shell》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 我设法让它工作,不确定这是否是你想要的:

    $ cat common.sh
    function get_options {
        while getopts ":ab:" optionName
        do
            echo "get_options: OPTARG: $OPTARG, optionName: $optionName"
        done
    }
    $ cat a.sh
    #!/bin/bash
    
    . ./common.sh
    
    function get_local_options {
        while getopts ":xy:" optionName; do
            case $optionName in
                x|y) 
                    echo "get_local_options: OPTARG: $OPTARG, optionName: $optionName"
                    last=$OPTIND;;
                *) echo "get_local_options, done with $optionName"
                    break;;
            esac;
        done
    }
    
    last=1
    get_local_options $*
    shift $(($last - 1))
    OPTIND=1
    get_options $*
    $ ./a.sh -x -y foo -a -b bar
    get_local_options: OPTARG: , optionName: x
    get_local_options: OPTARG: foo, optionName: y
    get_local_options, done with ?
    get_options: OPTARG: , optionName: a
    get_options: OPTARG: bar, optionName: b
    $ ./a.sh -a -b bar
    get_local_options, done with ?
    get_options: OPTARG: , optionName: a
    get_options: OPTARG: bar, optionName: b
    
返回
作者最近主题: