mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-06 05:24:46 +01:00
6 lines
140 B
Bash
6 lines
140 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for DEVICE in $(adb devices | grep '^emulator' | sed 's/device//'); do
|
||
|
adb -s $DEVICE uninstall org.eehouse.android.xw4
|
||
|
done
|