bash の変数展開とファイル名操作
ファイルへのフルパス
$ fullpath=/home/claire/.ssh/id_dsa.pub
ディレクトリ名
$ dirname $fullpath /home/claire/.ssh $ echo "${fullpath%/*}" # 後方からパターン最短マッチ部分を削除 /home/claire/.ssh
ファイルへのフルパス
$ fullpath=/home/claire/.ssh/id_dsa.pub
ディレクトリ名
$ dirname $fullpath /home/claire/.ssh $ echo "${fullpath%/*}" # 後方からパターン最短マッチ部分を削除 /home/claire/.ssh