From 1f408cecdd27e212800fc7fa108f18fa9e5fa961 Mon Sep 17 00:00:00 2001 From: PAN Lei Date: Mon, 30 Jan 2023 16:37:55 +0100 Subject: [PATCH] add script to kill avds --- kill-avds.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 kill-avds.sh diff --git a/kill-avds.sh b/kill-avds.sh new file mode 100644 index 0000000..890cc5e --- /dev/null +++ b/kill-avds.sh @@ -0,0 +1 @@ +adb devices | grep emulator | cut -f1 | while read line; do adb -s $line emu kill; done \ No newline at end of file