Skip to content

Instantly share code, notes, and snippets.

@9re
Last active December 31, 2015 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 9re/7925454 to your computer and use it in GitHub Desktop.
Save 9re/7925454 to your computer and use it in GitHub Desktop.
expect command file to install android sdk automatically
set timeout 3600
spawn android-sdk-macosx/tools/android update sdk -u
expect {
"Do you accept the license" {
send "y\n"
exp_continue
}
Downloading {
exp_continue
}
Installing {
exp_continue
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment