-
-
Save soundsmitten/9998460 to your computer and use it in GitHub Desktop.
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
| tell application "BBEdit" to set theFile to file of document 1 | |
| tell application "Finder" to set theFolder to (container of file theFile) as alias | |
| set theUnixPath to POSIX path of theFolder | |
| tell application "iTerm" | |
| activate | |
| set myTerm to (make new terminal) | |
| tell myTerm | |
| launch session "Default" | |
| set _session to current session | |
| end tell | |
| tell _session | |
| write text "pushd \"" & theUnixPath & "\"" | |
| end tell | |
| end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment