안드로이드 adb 명령어 리스트
xda 포럼에서 가져왔는데 링크가...
adb devices |
list all connected devices |
adb push <local> <remote> |
copy file/dir to device |
adb pull <remote> [<local>] |
copy file/dir from device |
adb sync [ <directory> ] |
copy host->device only if changed |
adb shell |
run remote shell interactively |
adb shell <command> |
run remote shell command |
adb emu <command> |
run emulator console command |
adb logcat [ <filter-spec> ] |
View device log |
adb forward <local> <remote> localabstract:<unix domain socket name> |
forward socket connections forward specs are one of: tcp:<port> |
adb jdwp |
list PIDs of processes hosting a JDWP transport |
adb install [-l] [-r] [-s] <file> | push this package file to the device and install it |
adb uninstall [-k] <package> | remove this app package from the device (‘-k’ means keep the data and cache directories) |
adb bugreport | return all information from the device that should be included in a bug report. |
adb help | show this help message |
adb version | show version num |
adb wait-for-device | block until device is online |
adb start-server | ensure that there is a server running |
adb kill-server | kill the server if it is running |
adb get-state | prints: offline | bootloader | device |
adb get-serialno | prints: <serial-number> |
adb status-window | continuously print device status for a specified device |
adb remount | remounts the /system partition on the device read-write |
adb reboot [bootloader|recovery] | reboots the device, optionally into the bootloader or recovery program |
adb reboot-bootloader | reboots the device into the bootloader |
adb root | restarts the adbd daemon with root permissions |
adb usb | restarts the adbd daemon listening on USB |
adb tcpip <port> | restarts the adbd daemon listening on TCP on the specified port |