Skip to content

Instantly share code, notes, and snippets.

@wangyung
Created April 5, 2017 03:56
Show Gist options
  • Save wangyung/4f15f22fcf45e4abdda2358642726391 to your computer and use it in GitHub Desktop.
Save wangyung/4f15f22fcf45e4abdda2358642726391 to your computer and use it in GitHub Desktop.
Stop android emulators
#!/bin/bash
#stop emulator
process=`ps -ef | awk '/[e]mulator/{print $2}'`
for i in $process; do
kill -9 $i;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment