Skip to content

Instantly share code, notes, and snippets.

@sz-alpar
Last active November 30, 2021 01:15
Show Gist options
  • Save sz-alpar/0cbb98561a3d126368f5604970799156 to your computer and use it in GitHub Desktop.
Save sz-alpar/0cbb98561a3d126368f5604970799156 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