公告
财富商城
积分规则
提问
发文
2019-06-24 04:56发布
不美不萌又怎样
adb shell input text "&" doesn't work, nor does adb shell input keyevent KEYCODE_AMPERSAND.
adb shell input text "&"
adb shell input keyevent KEYCODE_AMPERSAND
Related to question 7789826.
Try:
adb shell input text "\&"
For anyone stumbling across this in the future, the escape that finally worked from me was not \&, but rather "\&"
as in
adb shell echo Macaroni "\&" Cheese
and not
adb shell echo Macaroni \& Cheese
Hopefully this helps someone.
For the record, this is on Windows.
最多设置5个标签!
Try:
For anyone stumbling across this in the future, the escape that finally worked from me was not \&, but rather "\&"
as in
and not
Hopefully this helps someone.
For the record, this is on Windows.