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 |
'안드로이드 > 포팅' 카테고리의 다른 글
Android Exploit (0) | 2014.04.01 |
---|---|
[안드로이드] 안드로이드 버전 업데이트 과정 (0) | 2013.12.29 |
안드로이드 settings 데이터 알아보기 (0) | 2013.12.01 |
안드로이드 system 파티션 remount (0) | 2013.11.28 |
Android Build System 용어 (0) | 2013.10.16 |