prezto/modules/osx/functions/pfd

17 lines
260 B
Text
Raw Normal View History

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