Skip to content

Instantly share code, notes, and snippets.

@Jei
Forked from sz-alpar/adb-all
Created November 30, 2021 01:15
Show Gist options
  • Save Jei/34530cb57e93642fd4685f75f33b7824 to your computer and use it in GitHub Desktop.
Save Jei/34530cb57e93642fd4685f75f33b7824 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# Send adb commands to all connected devices.
#
# Usage: adb-all COMMANDS
#
adb devices | tail -n +2 | cut -sf 1 | xargs -I {} adb -s {} $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment