gpt4 book ai didi

android - adb pull 动态创建的文件路径

转载 作者:太空宇宙 更新时间:2023-11-04 04:01:20 28 4
gpt4 key购买 nike

我知道我可以像这样从 android 中提取文件

adb pull /sdcard/file.txt

但我尝试做点别的事情

首先,我像这样搜索最后编辑的文件

tmp123=$(adb shell ls /sdcard/file.* -aR . | head -n 1)

然后我尝试这个

adb pull $tmp123

我得到了这样的东西

' does not existsdcard/file.txt

我敢打赌这是一个非常愚蠢的错误,但我已经堆了好几个小时了谢谢

最佳答案

adb 输出末尾可能有一个“\r”换行符

你可以尝试这样的事情:

tmp123=$(adb shell ls /sdcard/file.* -aR . | head -n 1 | tr -d '\r')

引用this question寻找可能的解决方案

关于android - adb pull 动态创建的文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22861712/

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