Files
puppeteerjs/kill-avds.sh
T
2023-01-30 16:37:55 +01:00

1 line
87 B
Bash

adb devices | grep emulator | cut -f1 | while read line; do adb -s $line emu kill; done