如何使用 adb pull 从 Android 复制选定的文件
我正在尝试使用 adb pull 命令仅将某些文件 (jpg) 复制到我的 MacBook。我尝试了“adb pull sdcard/mydir/*.jpg”,但它显然不能解释通配符。如何只复制 jpg 文件?如果有帮助的话我已经root了手机。
I'm attempting to use the adb pull command to copy only certain files (jpg) to my macbook. I tried "adb pull sdcard/mydir/*.jpg" but it apparently doesn't interpret wildcards. How can I get only the jpg files copied over? I have rooted the phone if that helps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将文件移动到其他文件夹,然后提取整个文件夹。
You can move your files to other folder and then pull whole folder.
使用正则表达式拉取多个文件:
创建
pullFiles.sh
:运行它:
使其可执行:
chmod +x pullFiles.sh
运行它:
./pullFiles.sh< /code>
注意:
Pull multiple files using regex:
Create
pullFiles.sh
:Run it:
Make it executable:
chmod +x pullFiles.sh
Run it:
./pullFiles.sh
Notes:
至于简短的脚本,以下在我的 Linux 主机上运行
“ls minus one”让“ls”每行显示一个文件,引号允许文件名中包含空格。
As to the short script, the following runs on my Linux host
"ls minus one" lets "ls" show one file per line, and the quotation marks allow spaces in the filename.