Created
September 15, 2010 14:32
-
-
Save scottferg/580809 to your computer and use it in GitHub Desktop.
Small shell script to easily deploy an Android debug build to all connected devices using adb
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
#!/bin/bash | |
for x in `adb devices | awk '/device$/ {print $1}'`; do | |
echo `adb -s $x install -r bin/*-debug.apk` | |
sleep 0; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment