mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
5 lines
140 B
Bash
Executable file
5 lines
140 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for DEVICE in $(adb devices | grep '^emulator' | sed 's/device//'); do
|
|
adb -s $DEVICE uninstall org.eehouse.android.xw4
|
|
done
|