シェルスクリプトで現在のディレクトリを取得する方法 方法1: pwdコマンドを使用する#!/bin/bash current_dir=$(pwd) echo "現在のディレクトリは: $current_dir"方法2: dirnameコマンドを使用する>>More