Skip to content

Instantly share code, notes, and snippets.

@RyanFleck
Created July 2, 2019 16:52
Show Gist options
  • Save RyanFleck/90a1a2893f54f728f72a7c3dabd7a7b0 to your computer and use it in GitHub Desktop.
Save RyanFleck/90a1a2893f54f728f72a7c3dabd7a7b0 to your computer and use it in GitHub Desktop.
on run {input, parameters}
-- RCF: Quick Action for folders in Finder.app
-- Opens a new terminal window within the passed folder.
set POSIXPath to POSIX path of input
set newDirCmd to ("cd " & POSIXPath & " && clear")
(* Your script goes here *)
tell application "Terminal"
do script newDirCmd
activate
end tell
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment