如果在一行中我有单词设备我想检查我的脚本我尝试了这个正则表达式
if[$SERIAL =~ /device/]
但执行结果未知。这是我的脚本我尝试仅在显示 stat 设备的设备中安装 apk,因此不脱机,您可以在下面找到我的脚本
for SERIAL in $(adb devices | tail -n +2 | cut -sf 1);
do
if [$SERIAL =~ /device/]
#if [$SERIAL = "/^.*/device\b.*$/m"]
then
cd $1
for APKLIST in $(ls *.apk);
do
echo "Installation de $APKLIST on $SERIAL"
adb -s $SERIAL install -r $1/$APKLIST &
#adb bugreport > bug.txt
done
fi
done