LoginSignup
1
0

More than 1 year has passed since last update.

【bash】getoptsでコマンドの引数を取得するsh(ショートオプションとロングオプション対応)

Last updated at Posted at 2022-03-08

1. 概要

シェルスクリプトで引数を取得する際、getoptsコマンドを使用するのが一般的かと思いますが、getoptsコマンドは普通に使用するだけだとロングオプションに対応できません。
ロングオプションに対応させるには独自のロジックを組む必要があります。

本記事では、getoptsコマンドを使用したショートオプションとロングオプションに対応したシェルスクリプトのデモコードを公開します。

2. スクリプト

本題のスクリプトは下記の通りとなります。

get_arguments_demo.sh
#!/bin/bash

### Function:help&エラー出力 ###
function usage {
  cat <<EOM
Usage: $(basename "$0") [OPTION]...
  -h/--help   -       Display help
  -s/--string VALUE   output the character string argument
  -n/--num    VALUE   output the character number argument
  
hint: Do not put a space between the option and the argument.
hint: You can specify more than one of the same option.
hint: Correct execution example.

  $(basename "$0") [OPTION] [ARGMENT]

EOM
  exit 1
}

### メイン処理 ###
# i=0:処理が実行されなかった
# i=1:処理が実行された
i=0
# 引数を取る指定は「-」のみ
while getopts snh-: opt; do
  # 処理が開始したことを確認
  export i=1
  # OPTIND 番目の引数を「optarg」へ代入
  optarg="${!OPTIND}"
  # オプションと引数の間の空白行を禁止する
  if [ -z "$optarg" ];then usage ;fi
  if [ ${optarg:0:1} = "-" ];then usage ;fi
  # ロングオプション用に整形
  [[ "$opt" = - ]] && opt="-$OPTARG"
  # 引数を取得
  case "-$opt" in
    -s|--string)
      string="STRING=$optarg"
      shift
      echo $string
      ;;
    -n|--num)
      num="NUMBER=$optarg"
      echo $num
      shift
      ;;
    -h|--help|*)
      usage
      ;;
  esac
done 2>/dev/null
# オプションをすべて削除し、引数だけ残す
shift $((OPTIND - 1))
# 正しい引数が指定されているか判定
if [ $i -ne 1 ];then usage unset i; else unset i;fi

3. sh実行例

3.1 実行例

実行例
$ ./get_arguments_demo.sh -s HelloWorld
STRING=HelloWorld

$ ./get_arguments_demo.sh -s HelloWorld -n 100                                
STRING=HelloWorld
NUMBER=100

$ ./get_arguments_demo.sh --string HelloWorld
STRING=HelloWorld

$ ./get_arguments_demo.sh --string HelloWorld --num 100
STRING=HelloWorld
NUMBER=100

$ ./get_arguments_demo.sh -s HelloWorld --num 100                              
STRING=HelloWorld
NUMBER=100

3.2 エラー出力

基本的にはエラー時は用意したhelp処理を出力させます。
※shの組み込みエラーは、2>/dev/nullに飛ばします

エラーパターン
# 未知のオプション、及び引数を指定した場合
$ ./get_arguments_demo.sh -a HelloWorld
$ ./get_arguments_demo.sh --stringg HelloWorld
$ ./get_arguments_demo.sh -
$ ./get_arguments_demo.sh abc
# オプションと引数の間を詰めた場合
$ ./get_arguments_demo.sh -sHelloWorld
$ ./get_arguments_demo.sh --num100
# オプション、及び引数を指定しない場合
$ ./get_arguments_demo.sh
# -h/--helpオプションを指定した場合
$ ./get_arguments_demo.sh -h
$ ./get_arguments_demo.sh --help

↓ 上記コマンドを実行した場合、下記エラーを出力

エラー出力
Usage: get_arguments_demo.sh [OPTION]...
  -h/--help   -       Display help
  -s/--string VALUE   output the character string argument
  -n/--num    VALUE   output the character number argument
  
hint: Do not put a space between the option and the argument.
hint: You can specify more than one of the same option.
hint: Correct execution example.

  get_arguments_demo.sh [OPTION] [ARGMENT]

参照

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0