adb shell 指令集

1.connect device连接设备:

bash 复制代码
adb devices
#return:
List of devices attached
0123456789ABCDEF        device

2.连接终端

bash 复制代码
adb shell
  1. 从设备拷贝文件到本地
bash 复制代码
adb pull <remote> [local]
如: adb pull /sdcard/demo.txt e:\
  1. 从到本地拷贝文件到设备
bash 复制代码
adb push <local> <remote>
如:adb push d:\test.txt /sdcard
  1. 打印日志
bash 复制代码
adb logcat [option] [filter-specs]
  1. 打印系统信息,如 adb shell dumpsys
bash 复制代码
adb shell dumpsys [options]
  1. 以root身份重新进入adb
bash 复制代码
adb root
相关推荐
q***57741 天前
MySql的慢查询(慢日志)
android·mysql·adb
翔云1234561 天前
MySQL 机器重启后,gtid_executed 是如何初始化的
数据库·mysql·adb
d***95621 天前
docker 安装 mysql
mysql·adb·docker
3***89191 天前
开放自己本机的mysql允许别人连接
数据库·mysql·adb
Kaede61 天前
MySQL中如何使用命令行修改root密码
android·mysql·adb
1***t8271 天前
MySQL 8.0安装
数据库·mysql·adb
3***g2051 天前
Linux系统离线部署MySQL详细教程(带每步骤图文教程)
linux·mysql·adb
i***t9192 天前
Linux下MySQL的简单使用
linux·mysql·adb
q***57742 天前
MySQL 实验1:Windows 环境下 MySQL5.5 安装与配置
windows·mysql·adb
q***82912 天前
windows同时安装两个不同版本的Mysql
windows·mysql·adb