Created
August 16, 2019 18:23
-
-
Save pcomans/13e5ba6d1dcd44cb29994d3317c193f2 to your computer and use it in GitHub Desktop.
ADB Installatron
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
# Adopted from WorkingMatt's solution at | |
# https://stackoverflow.com/questions/8610733/how-can-i-adb-install-an-apk-to-multiple-connected-devices | |
echo "Installatron" | |
for SERIAL in $(adb devices | tail -n +2 | cut -sf 1); | |
do | |
for APKLIST in $(ls *.apk); | |
do | |
echo "Installatroning $APKLIST on $SERIAL" | |
adb -s $SERIAL install -r $APKLIST | |
done | |
done | |
echo "Installatron has left the building" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment