1.adb --help 可知常用命令有
a):adb push [-p] <local> <remote> p是disaplay progress 复制本地文件到远程端。
b):adb remount - - remounts the /system and /vendor (if present) partitions on the device read-write. 使得远程的设备可读写
c):adb pull [-p] [-a] <remote> [<local>] - copy file/dir from device
('-p' to display the transfer progress)
('-a' means copy timestamp and mode)
d)adb forward <local> <remote> - forward socket connections
forward specs are one of:
tcp:<port>
localabstract:<unix domain socket name>
localreserved:<unix domain socket name>
localfilesystem:<unix domain socket name>
dev:<character device name>
dwp:<process pid> (remote only)
2.echo 的重定向使用
echo xxx > file.txt 覆盖重定向文件
echo xxx >> file.txt 追加重定向文件,会自动换行
echo -e xxx \n > file.txt 覆盖重定向,换行,可以使用转义字符
本文详细介绍了ADB工具的常见命令,包括文件传输、设备重装、端口转发等功能,以及如何使用echo命令进行文件内容的重定向操作。适合安卓开发者及系统管理员参考。
1万+

被折叠的 条评论
为什么被折叠?



