Last active
December 27, 2015 08:59
-
-
Save panlw/7300355 to your computer and use it in GitHub Desktop.
[Finder] Copy Path to Clipboard
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
on run {input, parameters} | |
tell application "Finder" | |
set sel to the selection as text | |
set the clipboard to POSIX path of sel | |
end tell | |
return input | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment