Skip to content

Instantly share code, notes, and snippets.

@mitsuhiko
Created March 30, 2017 18:08
Show Gist options
  • Save mitsuhiko/77b2b2514f3b716e8dc8b2b098253754 to your computer and use it in GitHub Desktop.
Save mitsuhiko/77b2b2514f3b716e8dc8b2b098253754 to your computer and use it in GitHub Desktop.
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