From 0f28b975b4fb7c17c8645a50da2ad21e153dc835 Mon Sep 17 00:00:00 2001 From: Yi Liu Date: Tue, 11 Feb 2025 19:52:10 +0800 Subject: [PATCH] adb: update Chinese translation (#15719) --- pages.zh/common/adb.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pages.zh/common/adb.md b/pages.zh/common/adb.md index c2f183c71b..c8864716ae 100644 --- a/pages.zh/common/adb.md +++ b/pages.zh/common/adb.md @@ -22,12 +22,16 @@ - 从目标设备上拷贝一个文件 / 目录到本地: -`adb pull {{路径/到/设备的文件或目录}} {{路径/到/本地上的目录}}` +`adb pull {{路径/到/设备的文件或目录}} {{路径/到/本地目录}}` - 从本地拷贝一个文件 / 目录到目标设备: -`adb push {{路径/到/本地文件或目录}} {{路径/到/设备上的目录}}` +`adb push {{路径/到/本地文件或目录}} {{路径/到/设备目录}}` - 列出已连接的设备: `adb devices` + +- 当有多个设备连接时,指定目标设备执行命令: + +`adb -s {{设备_ID}} {{shell}}`