# upload file(s) from computer to phone:
adb push
# download file(s) from phone to computer:
adb pop
# create directory on phone:
adb shell mkdir
# remove directory on phone:
adb shell rm
# remove file(s) on phone:
adb shell rm -f
# copy file(s) on phone:
adb shell cpy
# list files on phone:
adb shell ls
# install package (apk file):
adb install
# uninstall package:
adb uninstall
# show the console of android with debug information (remember to plug the cable with the device):
adb logcat
# check which devices are connected:
adb devices
# kill the adb tool (useful if it crashes):
adb kill-server
adb logcat -s
我經常使用的 adb logcat -s -d [trace] > log.txt
常用的adb命令
linux系統的shell為使用者提供了使用作業系統的介面,是命令語言 命令解釋程式有程式語言的統稱。shell擁有自已內建的命令集,也能被系統中其他應用程式所呼叫。使用者在提示符下輸入的命令都由shell先解釋後再傳給lunix核心。一 基本命令 adb shell 進入目標裝置的linux sh...
常用的adb命令
1.連線手機 adb devices 二 應用管理 引數解釋 f顯示應用關聯的 apk 檔案 d只顯示 disabled 的應用 e只顯示 enabled 的應用 s只顯示系統應用 3只顯示第三方應用 i顯示應用的 installer u包含已解除安裝應用 包名包含 字串 比如檢視第三方應用 adb...
ADB常用的命令
一 adb簡介 adb,即 android debug bridge,android 除錯橋的縮寫,它是 android 開發 測試人員不可替代的強大工具,也是 android 裝置玩家的好玩具。安卓除錯橋 android debug bridge,adb 是一種可以用來操作手機裝置或模擬器的命令列...