Skip to content

Instantly share code, notes, and snippets.

@raymondctc
Last active March 14, 2024 16:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raymondctc/9f1d3841e5af573a3be6 to your computer and use it in GitHub Desktop.
Save raymondctc/9f1d3841e5af573a3be6 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