Created
March 10, 2017 22:30
-
-
Save reggi/6609cb701e1590bb958403076f665b77 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
| #!/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