如何将可选标志和参数传递给bash脚本?

时间:2015-06-29 19:31:37

标签: bash unix

我有一个bash脚本,我将参数传递给(并通过$ 1访问)。此参数是必须处理的单个命令(即git pull,checkout dev等)。

我像./script_name git pull

一样运行我的脚本

现在,我想在我的脚本中添加一个可选标志来执行其他功能。因此,如果我调用我的脚本./script_name -t git pull,它将具有与./script_name git pull不同的功能。

如何访问此新标记以及传入的参数。我尝试使用getopts,但似乎无法使其与传递给脚本的其他非标志参数一起使用。

1 个答案:

答案 0 :(得分:6)

使用getopts确实是要走的路:

has_t_option=false
while getopts :ht opt; do
    case $opt in 
        h) show_some_help; exit ;;
        t) has_t_option=true ;;
        :) echo "Missing argument for option -$OPTARG"; exit 1;;
       \?) echo "Unknown option -$OPTARG"; exit 1;;
    esac
done

# here's the key part: remove the parsed options from the positional params
shift $(( OPTIND - 1 ))

# now, $1=="git", $2=="pull"

if $has_t_option; then
    do_something
else
    do_something_else
fi
相关问题