我一直在尝试使用类似的东西将文件从我的 android 设备移动到我的 osx 机器:adb shell tar -c directory_to_copy | tar -x
. 似乎远程 tar 正在工作,但文件在某处被损坏。在玩了一些之后,我发现:
似乎 adb shell 命令将 LF 转换为 CRLF:
% adb shell 'cd /mnt/sdcard;echo hi>a.bin' % adb shell 'cd /mnt/sdcard;cat a.bin' | hexdump -C 00000000 68 69 0d 0a |hi..| 00000004 % adb pull /mnt/sdcard/a.bin 0 KB/s (3 bytes in 0.457s) % hexdump -C a.bin 00000000 68 69 0a |hi.| 00000003
它看起来是服务器或守护进程导致的,而不是客户端(参见 len=4):
% ADB_TRACE=1 adb shell 'cd /mnt/sdcard;cat a.bin' [... snip ...] system/core/adb/commandline.c::read_and_dump():read_and_dump(): post adb_read(fd=3): len=4 [... snip ...]
我猜这个守护进程正在为 Windows 用户在 shell 命令中进行这种翻译。
我的问题是:
- 什么?(这是为了什么目的?)
- 有没有办法告诉它(adbd?)不要那样做?
- 谁能想到任何创造性的方法来规避它(我考虑过base64编码数据,但我更愿意避免这种开销。此外,创建本地文件不是一种选择,因为我的文件系统已经很满了)
谢谢!