Skip to content

Instantly share code, notes, and snippets.

@futurist
Created November 18, 2016 09:21
Show Gist options
  • Save futurist/09b76c42e461dbad56e327bb5f12c700 to your computer and use it in GitHub Desktop.
Save futurist/09b76c42e461dbad56e327bb5f12c700 to your computer and use it in GitHub Desktop.
Get finder selection path and save to clipboard, on macOS
# 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