Skip to content

Instantly share code, notes, and snippets.

@am5a03
Created March 21, 2016 11:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save am5a03/5ae28da3bf342046aebe to your computer and use it in GitHub Desktop.
Save am5a03/5ae28da3bf342046aebe to your computer and use it in GitHub Desktop.
Batch install apks to multiple connected devices
#!/bin/sh
adb devices | tail -n +2 | cut -sf 1 | xargs -I \{\} -P4 adb -s \{\} install -r $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment