sh getopts的の使い方

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh getopts的の使い方相关的知识,希望对你有一定的参考价值。

#!/bin/bash

a_flag=
b_flag=
n_arg=

while getopts abn: option
do
  case "$option" in
    a)
      a_flag=true
      ;;
    b)
      b_flag=true
      ;;
    n)
      n_arg=${OPTARG}
      ;;
    \?)
      exit 1
      ;;
  esac
done

shift $((OPTIND - 1))

cat <<END
a_flag = ${a_flag}
b_flag = ${b_flag}
n_arg = ${n_arg}
\$1 = $1
\$2 = $2
END

以上是关于sh getopts的の使い方的主要内容,如果未能解决你的问题,请参考以下文章

javascript jQuery的の変数の使い方

markdown MySQL的のヘルプの使い方

sh SCPの使い方

text 提琴手の使い方

markdown Docker Registryの使い方

markdown 统一の使い方