gpt4 book ai didi

android - shell 脚本 : How to read the response of adb devices and store it

转载 作者:太空宇宙 更新时间:2023-11-04 10:36:25 29 4
gpt4 key购买 nike

我正在尝试制作一个小的 shell 脚本来传递一些 adb 命令,重新启动设备,一旦设备重新启动,再次传递一些 adb 命令。我正在考虑在设备重新启动期间定期传递 adb 设备,以便知道何时可以传递下一个 adb 命令(不确定是否有其他更好的方法来执行此操作)。为此,我需要检查每个 adb devices 命令的响应。有什么方法可以阅读此回复?我是 shell 脚本的新手。请原谅我为完成此任务而采用的方法不正确。任何帮助或建议将不胜感激。

最佳答案

您可以从响应中创建一个 if 语句:

device=$(adb devices) 
while true
do
sleep 5
if [ "$(adb devices)"="$device" ];
then
echo "device rebooted"
break
fi
done

这将在 5 秒的时间间隔内检查 10 次。

关于android - shell 脚本 : How to read the response of adb devices and store it,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37273206/

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