Skip to content

Instantly share code, notes, and snippets.

@Caio99BR
Last active January 1, 2017 18:09
Show Gist options
  • Save Caio99BR/259c3ea9045b1438ce1de9d457e29281 to your computer and use it in GitHub Desktop.
Save Caio99BR/259c3ea9045b1438ce1de9d457e29281 to your computer and use it in GitHub Desktop.
Update SDK, autoconfirm license questions
#!/bin/bash
# Update SDK, autoconfirm license questions
expect -c '
set timeout -1 ;
spawn ${1} update sdk --no-ui --all;
expect {
"Do you accept the license" { exp_send "y\r" ; exp_continue }
eof
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment