Skip to content

Instantly share code, notes, and snippets.

@davidnunez
Created October 31, 2011 19:08
Show Gist options
  • Save davidnunez/1328533 to your computer and use it in GitHub Desktop.
Save davidnunez/1328533 to your computer and use it in GitHub Desktop.
Install all apks in a folder to android device
for f in *.apk; do echo "Processing $f"; adb install $f;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment