我有一个bash脚本,我将参数传递给(并通过$ 1访问).此参数是必须处理的单个命令(即git pull,checkout dev等).
我像我一样运行我的脚本 ./script_name git pull
现在,我想在我的脚本中添加一个可选标志来执行其他功能.因此,如果我调用我的脚本./script_name -t git pull,它将具有不同的功能./script_name git pull.
如何访问这个新标志以及传入的参数.我尝试过使用getopts,但似乎无法使其与传递给脚本的其他非标志参数一起使用.
使用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
Run Code Online (Sandbox Code Playgroud)