2012-02-01 05:37:51 +01:00
|
|
|
#
|
|
|
|
# Displays the current Finder.app directory.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2011-10-12 05:13:58 +02:00
|
|
|
osascript 2>/dev/null <<EOF
|
|
|
|
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
|