mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
27 lines
454 B
Bash
Executable file
27 lines
454 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e -u
|
|
|
|
INDEX=0
|
|
|
|
usage() {
|
|
echo "usage: $0 [--help] [-n <index>]"
|
|
echo "uninstall crosswords from the <index>th device"
|
|
exit 0
|
|
}
|
|
|
|
while [ $# -ge 1 ]; do
|
|
case $1 in
|
|
-n)
|
|
shift
|
|
INDEX=$1
|
|
;;
|
|
*) usage
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
SERIAL="$(adb devices | grep 'device$' | sed -n "$((1+INDEX)) p" | awk '{print $1}')"
|
|
|
|
adb -s $SERIAL uninstall org.eehouse.android.xw4
|