You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
330 B
15 lines
330 B
# |
|
# Displays the current Finder.app selection. |
|
# |
|
# Authors: |
|
# Sorin Ionescu <sorin.ionescu@gmail.com> |
|
# |
|
|
|
osascript 2>&1 <<EOF |
|
tell application "Finder" to set the_selection to selection |
|
if the_selection is not {} |
|
repeat with an_item in the_selection |
|
log POSIX path of (an_item as text) |
|
end repeat |
|
end if |
|
EOF
|
|
|