Skip to content

Instantly share code, notes, and snippets.

@ohadcn
Last active August 29, 2015 14:20
Show Gist options
  • Save ohadcn/f24c9ed5bc1cd6538f8f to your computer and use it in GitHub Desktop.
Save ohadcn/f24c9ed5bc1cd6538f8f to your computer and use it in GitHub Desktop.
upload_apk.sh
#!/bin/bash
if test $# -lt 1 ; then
echo "Usage: download_apk.sh <target-dir>"
exit 1
fi
for APK_FILE in $(ls --color=none); do
echo 'installing ' $APK_FILE;
adb install $1/$APK_FILE;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment