Linux シェルスクリプト case文で条件分岐を行う

環境
CentOS 7.9

構文
case “$変数名" in
値1) 処理コード1
値2) 処理コード2
case文を使って条件分岐を行います。

サンプルコード

#!/bin/bash
name=yokohama

case "$name" in
  tokyo) echo "hello tokyo" ;;
  yokohama) echo "hello yokohama" ;;
  sato) echo "hello sato" ;;
esac

実行結果
hello yokohama

CentOS 7

Posted by arkgame