Skip to content

Instantly share code, notes, and snippets.

@pcomans
Created August 16, 2019 18:23
Show Gist options
  • Save pcomans/13e5ba6d1dcd44cb29994d3317c193f2 to your computer and use it in GitHub Desktop.
Save pcomans/13e5ba6d1dcd44cb29994d3317c193f2 to your computer and use it in GitHub Desktop.
ADB Installatron
# 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