quick uninstall script since I can't remember the syntax

This commit is contained in:
Eric House 2010-06-05 10:43:03 -07:00
parent f9518d5a87
commit c897aefb7e

View file

@ -0,0 +1,5 @@
#!/bin/sh
for DEVICE in $(adb devices | grep '^emulator' | sed 's/device//'); do
adb -s $DEVICE uninstall org.eehouse.android.xw4
done