1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-02-08 20:25:22 +00:00

17 lines
260 B
Plaintext
Raw Normal View History

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