AppleScript é uma boa maneira de automatizar alguns recursos do iTerm. Combinar isso com meus scripts Bash foi um acéfalo para obter minhas guias de iTerm padrão. Você pode ver todo o código em https://github.com/jacaetevha/finna-be-octo-hipster/
Esta é uma prévia:
** ~ / Library / Scripts / iterm create default_tabs.scpt **
tell application "iTerm"
activate
tell the current terminal
set theRailsDir to choose folder with prompt "Select your Rails directory"
repeat 6 times
activate current session
launch session "Default Session"
tell the last session
write text "cd " & (theRailsDir as string)
end tell
end repeat
tell the last session
write text "osascript '~/Library/Scripts/iterm_set_rails_tabs.scpt'"
end tell
end tell
end tell