Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DenBond7/02df9a2b5eb8690eb50394fe817d6484 to your computer and use it in GitHub Desktop.
Save DenBond7/02df9a2b5eb8690eb50394fe817d6484 to your computer and use it in GitHub Desktop.
adb kill all emulators
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