mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
8 lines
213 B
Bash
Executable file
8 lines
213 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for DEVICE in $(adb devices | grep '^emulator' | sed 's/device//'); do
|
|
adb -s $DEVICE install -r ./bin/XWords4-debug.apk
|
|
COUNT=$((COUNT+1))
|
|
done
|
|
|
|
echo "installed into $COUNT emulator instances"
|