Joined
·
2,271 Posts
I am by far means no expert in this. Some of the more common commands in adb are push, pull, shell, install, remount, and logcat.
Push sends a file from your desktop computer to your Android device: adb push test.txt /sdcard/test.txt
Pull pulls a file from your Android device to your desktop computer: adb pull /sdcard/test.txt test.txt
Shell lets you run an interactive shell (command prompt) on the Android device: adb shell
Install lets you install an android APK file to your Android device: adb install myapp.apk
Remount remounts the /system partition as writable (or readonly if it is already writeable): adb remount
Logcat lets you view the devices debug logs in real time (must press control+c to exit): adb logcat
ADB Wiki
Push sends a file from your desktop computer to your Android device: adb push test.txt /sdcard/test.txt
Pull pulls a file from your Android device to your desktop computer: adb pull /sdcard/test.txt test.txt
Shell lets you run an interactive shell (command prompt) on the Android device: adb shell
Install lets you install an android APK file to your Android device: adb install myapp.apk
Remount remounts the /system partition as writable (or readonly if it is already writeable): adb remount
Logcat lets you view the devices debug logs in real time (must press control+c to exit): adb logcat
ADB Wiki