shell条件getopts使用

一、简介

在linux命令中,我们通常会见到linux命令后,加参数-a或-ab等写法,也就是指定命令的行为及传递参数。

这就借助了getopts来获取命令参数。

二、使用

例如,编写如下脚本getopts_study.sh:

#!/usr/bin/env bash

#读取参数到opt中
while getopts "abc:" opt;
do
    case ${opt} in
    a)
        # ${OPTIND}表示位置
        echo "this is a param , index ${OPTIND}"
        # ";;"为case中的分界符
        ;;
    b)
        echo "this is b param, index ${OPTIND}"
        ;;
    c)
        # 参数c后是":",表示后接参数,最后参数保存在${OPTARG}中
        echo "this ia c param , index ${OPTIND},val ${OPTARG}"
        ;;
    esac
done
运行:

./getopts_study.sh -a -c test

输出:

this is a param , index 2
this ia c param , index 4,val test


你可能感兴趣的:(shell)