Created
February 2, 2018 04:05
-
-
Save carlflor/65a5da3991377978c3561970b18545d5 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
# cd and new tab stuff | |
tell application "iTerm2" | |
tell current window | |
tell current session | |
write text "cd ~/go/somewhere" | |
write text "clear" | |
end tell | |
create tab with default profile | |
tell current tab | |
tell current session | |
write text "cd ~/go/somewhere_else" | |
write text "clear" | |
end tell | |
end tell | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment