Created
April 26, 2021 06:59
-
-
Save jimmyhoran/ac6a157c501c336c9e8bd6d3586f8beb to your computer and use it in GitHub Desktop.
Kill all running emulators
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb devices | grep emulator | cut -f1 | while read line; do adb -s $line emu kill; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment