4 lines
103 B
Bash
4 lines
103 B
Bash
#!/usr/bin/bash
|
|
|
|
for e in $(adb devices | grep emulator | sed 's/\t.*//'); do adb -s $e emu kill; done
|