Skip to content

Instantly share code, notes, and snippets.

@coreygo
Last active April 17, 2017 21:36
Show Gist options
  • Save coreygo/a2efbfe1e37d3838e66056a20a20a123 to your computer and use it in GitHub Desktop.
Save coreygo/a2efbfe1e37d3838e66056a20a20a123 to your computer and use it in GitHub Desktop.
Open iTerm from Finder
on run {input, parameters}
tell application "Finder"
set dir_path to quoted form of (POSIX path of (folder of the front window as alias))
end tell
CD_to(dir_path)
end run
on CD_to(theDir)
tell application "iTerm"
activate
try
set newTab to (create tab with default profile)
tell current session of current window
write text "cd " & theDir & ";clear;"
end tell
end try
end tell
end CD_to
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment