Skip to content

Instantly share code, notes, and snippets.

@emson
Created December 2, 2011 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emson/1422525 to your computer and use it in GitHub Desktop.
Save emson/1422525 to your computer and use it in GitHub Desktop.
Script to cd to the last opened finder directory
# function to change directory to the one set in the last opened finder.
cdf () {
currFolderPath=$( /usr/bin/osascript <<" EOT"
tell application "Finder"
try
set currFolder to (folder of the front window as alias)
on error
set currFolder to (path to desktop folder as alias)
end try
POSIX path of currFolder
end tell
EOT
)
echo "cd to \"$currFolderPath\""
cd "$currFolderPath"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment