Created
March 30, 2017 18:08
-
-
Save mitsuhiko/77b2b2514f3b716e8dc8b2b098253754 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
osascript <<EOF | |
tell application "iTerm2" | |
activate | |
write text "echo left" | |
tell current session of current window to set newSplit to split vertically with same profile | |
tell newSplit | |
select | |
write text "echo top" | |
end tell | |
tell current session of current window to set newSplit to split horizontally with same profile | |
tell newSplit | |
select | |
write text "echo bottom" | |
end tell | |
end tell | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment