mirror of
https://gitcode.com/gh_mirrors/re/react-native-pushy.git
synced 2025-09-16 08:41:37 +08:00
10 lines
212 B
Bash
Executable File
10 lines
212 B
Bash
Executable File
#!/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." |