[Bash] if 文でディレクトリが存在するかを判定する

作成日: 2022年10月27日

テスト演算子 -d を使うと、if 文でディレクトリが存在しているかどうかを判定することができます。下記の例では、現在のディレクトリーに dummy_dir が存在していたら the directory exists を出力しています。

if [ -d dummy_dir ]; then
  echo "the directory exists"
fi
Bash