1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 18:10:28 +00:00
prezto/modules/osx/functions/pfd

17 lines
260 B
Plaintext
Raw Normal View History

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