Mac 터미널에서 Finder 위치로 이동

less than 1 minute read

Mac 사용자라면(?) 한번쯤 고민 해봤을것 같습니다.

현재 사용중인 Finder 경로에서 Terminal을 실행 시킬 수 없을까?

코드 2줄로 간단하게 실행시키는 방법을 알려드립니다.


Terminal에서 바로 Finder 경로로 이동

실행 화면은 아래와 같습니다.


사용중인 Terminal Shell 설정 수정

paulirish/dotfiles을 참고했습니다 :)

현재 사용중인 bash_profile 이나 zshrc를 vi로 편집하세요.

# cd into whatever is the forefront Finder window.
cdf() {  # short for cdfinder
  cd "`osascript -e 'tell app "Finder" to POSIX path of (insertion location as alias)'`"
}

위 코드를 적당한 위치에 넣은 후에

$ source ~/.zshrc

$ pwd
/Users/hg90

$ cdf

$ pwd
/Users/hg90/Desktop/개발/Unity/Project

끝.

Leave a comment