1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
react-native-pushy/.github/workflows/scripts/adb_all_emulators.sh

10 lines
212 B
Bash
Raw Normal View History

2023-03-15 23:27:25 +08:00
#!/bin/bash
echo "Running $1 on all running emulators..."
devices=`adb devices`
for device in $devices; do
if [[ "$device" =~ "emulator-" ]]; then
adb -s $device $1
fi
done
echo "All Done."