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." |