gpt4 book ai didi

linux - bash:遍历进程输出并终止进程

转载 作者:IT王子 更新时间:2023-10-29 01:09:50 25 4
gpt4 key购买 nike

我需要以下方面的帮助:

我使用 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

最佳答案

adb shell logcat | grep TestProcess | while read line
do
echo "$line"
if [ "$line" = "TestProces test service stopped" ]
then echo "TestService finished"
break
fi
done

关于linux - bash:遍历进程输出并终止进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15206567/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com