Skip to content

Instantly share code, notes, and snippets.

@scottferg
Created September 15, 2010 14:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save scottferg/580809 to your computer and use it in GitHub Desktop.
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
#!/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