xwords/xwords4/android/scripts/install_all.sh

47 lines
827 B
Bash
Raw Normal View History

#!/bin/sh
2012-01-21 17:50:12 +01:00
set -u -e
APK=./bin/XWords4-debug.apk
usage() {
[ $# -ge 1 ] && echo "Error: $1"
echo "usage: $(basename $0) [-e] [-d]"
exit 1
}
[ -e $APK ] || usage "$APK not found"
DEVICES=""
while [ $# -ge 1 ]; do
case $1 in
-e)
2012-01-24 15:21:43 +01:00
DEVICES="$DEVICES $(adb devices | grep '^emulator' | awk '{print $1}')"
2012-01-21 17:50:12 +01:00
;;
-d)
DEVICES="$DEVICES $(adb devices | grep -v emulator | grep 'device$' | awk '{print $1}')"
;;
*)
usage
;;
esac
shift
done
if [ -n "$DEVICES" ]; then
echo "installing this binary. Check the age..."
ls -l $APK
echo ""
fi
COUNT=0
for DEVICE in $DEVICES; do
echo $DEVICE
adb -s $DEVICE install -r $APK
COUNT=$((COUNT+1))
done
2012-01-21 17:50:12 +01:00
echo "installed into $COUNT devices/emulators"