This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Finder" | |
set sel to the selection | |
if (count of sel) is greater than 1 then | |
set theList to "" | |
repeat with e in sel | |
set theList to theList & POSIX path of (e as text) & return | |
end repeat | |
set the clipboard to theList | |
else if (count of sel) is equal to 1 then | |
set the clipboard to POSIX path of (sel as text) |