标签: shell adb android-things
我在连接到LTE device时遇到问题。
执行连接 WiFi 的命令后,出现此错误:
即。当我执行adb logcat -d | grep Wifi时,它无法识别grep命令。删除grep后,它无法识别Wifi。删除Wifi后,它表示“语法不正确”。
adb logcat -d | grep Wifi
grep
Wifi
答案 0 :(得分:1)
您没有shell - 进入设备,因此grep命令在您的主机(Windows)环境中执行。执行adb shell "logcat -d | grep Wifi"。
shell
adb shell "logcat -d | grep Wifi"