ADB Shell Commands
The Android Debug Bridge (adb) provides a Unix shell that you can use to run a variety of commands on an emulator or connected device. ADB Shell Commands https://developer.android.com/intl/es/tools/help/shell.html Issuing Shell Commands You can use the shell command to issue commands, with or without entering the adb remote shell on the emulator/device. To issue a single command without entering a remote shell, use the shell command like this:
1 2 | adb [-d|-e|-s <serialNumber>] shell adb shell |
List of all attached device
1 2 | devices adb devices |
Download a specified file from an device to your computer
1 2 | pull adb pull |
Upload a specified file from your computer to an […]