gpt4 book ai didi

windows - 如何通过 git bash for windows 将绝对路径传递给 adb 命令?

转载 作者:IT王子 更新时间:2023-10-29 00:40:25 25 4
gpt4 key购买 nike

我正在尝试使用 git bash (msysgit) 将 unix 样式路径传递给 Android adb 命令,但 shell 错误地解释了我的路径。到目前为止,这是我尝试过的:

$ adb push myfile /mnt/sdcard/
failed to copy 'myfile' to 'C:/Program Files (x86)/Git/mnt/sdcard/': No such file or directory

$ adb push myfile "/mnt/sdcard/"
failed to copy 'myfile' to 'C:/Program Files (x86)/Git/mnt/sdcard/': No such file or directory

$ adb push myfile '/mnt/sdcard/'
failed to copy 'myfile' to 'C:/Program Files (x86)/Git/mnt/sdcard/': No such file or directory

正确的做法是什么?

最佳答案

根据 this answer , MSYS shell 正在根据 these rules 处理文件名.根据 mangling 规则,以下内容应该适合您:

adb push myfile '//mnt\sdcard\'

(将第一个斜杠替换为两个斜杠,将所有剩余的斜杠替换为反斜杠)

关于windows - 如何通过 git bash for windows 将绝对路径传递给 adb 命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16344985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com