Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevin-funderburg/8a18c46a8e1c5759ee965b4f8bba2f97 to your computer and use it in GitHub Desktop.
Save kevin-funderburg/8a18c46a8e1c5759ee965b4f8bba2f97 to your computer and use it in GitHub Desktop.
Open current Finder folder in iTerm2
tell application "Finder"
set myWin to window 1
set theWin to (quoted form of POSIX path of (target of myWin as alias))
end tell
tell application "iTerm"
set w to create window with profile "Default"
tell w's current session to write text "cd " & theWin & " && clear"
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment