如何用adb shell输入输入&符号?

时间:2015-02-12 02:31:38

标签: android input adb keyboard-events

adb shell input text "&"不起作用,adb shell input keyevent KEYCODE_AMPERSAND也不起作用。

question 7789826相关。

2 个答案:

答案 0 :(得分:4)

尝试:

adb shell input text "\&"

答案 1 :(得分:0)

对于任何在未来遇到这种情况的人来说,最终对我有用的逃避不是\&,而是" \&"

,如

adb shell echo Macaroni "\&" Cheese

adb shell echo Macaroni \& Cheese

希望这有助于某人。

对于记录,这是在Windows上。