Skip to content

Instantly share code, notes, and snippets.

@am5a03
Created April 7, 2016 06:54
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/cd1034eb544fa1cba6fdc1b395cf3288 to your computer and use it in GitHub Desktop.
Save am5a03/cd1034eb544fa1cba6fdc1b395cf3288 to your computer and use it in GitHub Desktop.
Install apk to multiple connected devices in parallel
#!/bin/sh
adb devices | tail -n +2 | cut -sf 1 | xargs -P4 -I \{\} adb -s \{\} install -r $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment