Adb Android Debug Bridge Cheatsheet
Adb Android Debug Bridge Cheatsheet
Device Basics
Command Description
wait-for-device can be specified after adb to ensure that the command will run once
the device is connected.
-s can be used to send the commands to a specific device when multiple are connected.
Examples
Logcat
Command Description
1/2
Command Description
Examples
File Management
Command Description
adb push <local> <remote> Copies the local to the device at remote
adb pull <remote> <local> Copies the remote from the device to local
Examples
Remote Shell
Command Description
adb shell <command> Runs the specified command on device (most unix
commands work here)
2/2