Created
November 18, 2016 09:21
-
-
Save futurist/09b76c42e461dbad56e327bb5f12c700 to your computer and use it in GitHub Desktop.
Get finder selection path and save to clipboard, on macOS
This file contains hidden or 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
# activate application "Finder" | |
set l to {} | |
tell application "Finder" to repeat with f in (get selection) | |
set end of l to POSIX path of (f as alias) | |
end repeat | |
set text item delimiters to linefeed | |
set the clipboard to (l as text) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment