Created
November 5, 2011 00:09
-
-
Save alecmce/1340845 to your computer and use it in GitHub Desktop.
cd to the front finder's location
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cdf: cd to the front finder's location | |
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
nice