prezto/modules/osx/functions/pfd

17 lines
260 B
Plaintext
Raw Normal View History

2012-02-01 12:37:51 +08:00
#
# Displays the current Finder.app directory.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# function pfd {
osascript 2> /dev/null <<EOF
2011-10-12 11:13:58 +08:00
tell application "Finder"
2014-02-03 03:44:22 +08:00
return POSIX path of (target of first window as text)
2011-10-12 11:13:58 +08:00
end tell
EOF
# }