Skip to content

Instantly share code, notes, and snippets.

@jimmyhoran
Created April 26, 2021 06:59
Show Gist options
  • Save jimmyhoran/ac6a157c501c336c9e8bd6d3586f8beb to your computer and use it in GitHub Desktop.
Save jimmyhoran/ac6a157c501c336c9e8bd6d3586f8beb to your computer and use it in GitHub Desktop.
Kill all running 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