3

我正在尝试getopts使我的脚本能够接受命令行参数,例如-s "gil.sh 123. 因为它不支持具有长名称的命令行参数,所以我有一个函数来获取参数,并将长版本(在本例中为 --script)的每个外观更改为短版本(-s),然后才被getopts调用.

问题是,如果它包含空格(在本例中为“gil.sh 123”),那么我无法获得第二个函数将其作为具有 2 个成员的数组,在这种情况下,我得到的是数组(-s gil.sh 123)而不是(-s "gil.sh 123")我发送的数组功能。

这是我的代码:

#!/bin/bash
#change long format arguments (-- and then a long name) to short format (- and then a single letter) and puts result in $parsed_args
function parse_args()
{
    m_parsed_args=("$@")
    #changes long format arguments (--looong) to short format (-l) by doing this:
    #res=${res/--looong/-l}
    for ((i = 0; i < $#; i++)); do
        m_parsed_args[i]=${m_parsed_args[i]/--script/-s}
    done
}

#extracts arguments into the script's variables
function handle_args()
{
    echo "in handle_args()"
    echo $1
    echo $2
    echo $3
    while getopts ":hno:dt:r:RT:c:s:" opt; do
        case $opt in
            s)
                #user script to run at the end
                m_user_script=$OPTARG
                ;;
            \?)
                print_error "Invalid option: -$OPTARG"
                print_error "For a list of options run the script with -h"
                exit 1
                ;;
            :)
                print_error "Option -$OPTARG requires an argument."
                exit 1
                ;;
        esac
    done
}

parse_args "$@"
handle_args ${m_parsed_args[@]}

(这段代码显然比原来的代码要短,它有更多的替换和参数类型,我只留下了一个)

我这样调用脚本:./tmp.sh -s "gil.sh 123"我可以看到,在parse_args变量m_parsed_args是一个有 2 个成员的数组之后,但是当我将它发送到handle_args有 3 个成员的数组时,所以我不能给变量m_user_script我希望它得到的正确值( “吉尔.sh 123”)

4

1 回答 1

12

为什么不对 m_parsed_args 数组使用双引号?

handle_args "${m_parsed_args[@]}"
于 2013-09-24T12:49:01.293 回答