Skip to content

Instantly share code, notes, and snippets.

@xream
Created April 22, 2012 14:19
Show Gist options
  • Save xream/2464296 to your computer and use it in GitHub Desktop.
Save xream/2464296 to your computer and use it in GitHub Desktop.
adbInstallApk
#!/bin/bash
PATH=$PATH:/usr/local/sbin:/Volumes/data/stuff/code/android-sdk-macosx/platform-tools
for file in `ls|grep .apk`
do
echo $file
adb install $file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment