Skip to content

Instantly share code, notes, and snippets.

@reggi
Created March 10, 2017 22:30
Show Gist options
  • Select an option

  • Save reggi/6609cb701e1590bb958403076f665b77 to your computer and use it in GitHub Desktop.

Select an option

Save reggi/6609cb701e1590bb958403076f665b77 to your computer and use it in GitHub Desktop.
#!/usr/local/bin/expect -f
set timeout -1
spawn $env(SHELL)
match_max 100000
send -- "eb init\r"
expect "Select a default region"
send -- "5\r"
expect "Select an application to use"
send -- "1\r"
expect "Select the default environment"
send -- "1\r"
send -- "exit\r"
expect eof
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment