Skip to content

Instantly share code, notes, and snippets.

@royclarkson
royclarkson / stop-emulators.sh
Created May 1, 2014 16:14
Bash script to kill all running Android emulators
#!/bin/bash
for ((PORT=5554; PORT<=5584; PORT+=2)); do
echo killing emulator-$PORT...
adb -s emulator-$PORT emu kill
done