我需要以下帮助:
我使用 linux 编写发送到设备的命令。我需要向设备提交一个 grep logcat 命令,然后在生成它时迭代它的输出并查找特定的字符串。找到此字符串后,我希望我的脚本移至以下命令。
在伪代码中
for line in "adb shell logcat | grep TestProccess"
do
if "TestProccess test service stopped" in line:
print line
print "TestService finished \n"
break
else:
print line
done