#はじめに
自分の環境がMacになったので、備忘録的に色々とメモとして残しておくことに
.bashrcに書き足して、terminaLife(なにそれ)を充実していく過程でやったことを
#.bashrcに以下を書き加える
.bashrc
cdf () {
target=`osascript -e 'tell application "Finder" to if (count of Finder windows) > 0 then get POSIX path of (target of front Finder window as text)'`
if [ "$target" != "" ]
then
cd "$target"
pwd
else
echo 'No Finder window found' >&2
fi
}
#Finderで作業したあと…
terminal上で[cdf]とコマンドを打てばそのディレクトリに移動可能。
これで素敵なterminaLifeがおくれますね!!
#おまけ
openコマンドもaliasに登録しておくと、terminal↔︎Finderの関係がとても楽になる
.bashrc
alias f='open .'
source ~/.bash_profileも忘れずに!
これがQiita初投稿ですね。markdown便利ですね
#参考にさせていただいたところ
・jumping to the finder location in terminal