Skip to content

Instantly share code, notes, and snippets.

@wakinchan
Created March 3, 2013 06:38
Show Gist options
  • Save wakinchan/5075002 to your computer and use it in GitHub Desktop.
Save wakinchan/5075002 to your computer and use it in GitHub Desktop.
iOS Tweak instant `make package install`
#!/bin/sh
expect -c"
spawn make package install
expect {
\"'s password:\" {
send \"alpine\r\"
expect \"'s password:\"
send \"alpine\r\"
expect \"'s password:\"
send \"alpine\r\"
}
}
interact
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment