当尝试在 adb shell 中输入问号时,它显示为 d,这是为啥呢?

Posted

技术标签:

【中文标题】当尝试在 adb shell 中输入问号时,它显示为 d,这是为啥呢?【英文标题】:When trying to enter in a question mark into adb shell it shows up as a d, why is this?当尝试在 adb shell 中输入问号时,它显示为 d,这是为什么呢? 【发布时间】:2016-02-27 10:43:55 【问题描述】:

所以我尝试输入问号字符?,当我使用命令adb shell input text ? 时,它在当前文本字段中显示为d。但是,如果我执行命令adb shell input text \?,则会出现问号,但前面有\\?)。有没有办法来解决这个问题?没有其他角色有这个问题。

【问题讨论】:

【参考方案1】:

在 *nix 诗句中,问号是与一个字符完全匹配的通配符。这意味着如果您想使用 ? 字符而不是通配符功能,则需要对其进行转义。为什么它给你一个d 而不是一个错误,我有点想不通。

adb shell input text "?"adb shell input text \? 应该都可以工作。

http://www.linfo.org/wildcard.html

【讨论】:

"?"给出一个 d 和 \?给出“\?”,我只想要问号。【参考方案2】:

试试:

adb shell input text \\?

应该可以的。

【讨论】:

以上是关于当尝试在 adb shell 中输入问号时,它显示为 d,这是为啥呢?的主要内容,如果未能解决你的问题,请参考以下文章

ADB 拒绝 shell 命令 (ls -l ): 关闭

使用adb shell启动Android应用程序时出现错误“活动类不存在”

抑制从 adb shell 运行的 android 活动的输出

运行 adb shell 命令时 #adb shell 与 #adb -e shell 之间的区别

在 Android 应用程序中执行 shell 脚本不显示结果

我可以在 C# 中运行 adb shell 命令并且在拔下 USB 电缆时不会中断它吗?