Adds ofd command to osx.plugin.zsh that opens finder to the present

working directory
This commit is contained in:
Mike Salvatore 2016-06-15 13:43:15 -04:00
commit 3021a5c091

View file

@ -151,6 +151,14 @@ function pfd() {
EOF
}
function ofd() {
osascript 2>/dev/null <<EOF
tell application "Finder"
open POSIX file "`pwd`"
end tell
EOF
}
function pfs() {
osascript 2>/dev/null <<EOF
set output to ""