Created
February 13, 2014 12:11
-
-
Save 2bard/8973995 to your computer and use it in GitHub Desktop.
Launch all Android Virtual Devices from command line
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
function launchavd { | |
names=$(android list avd | grep 'Name' | awk '{ print $2 }') | |
for item in $names; do | |
echo "Launching VM $item" | |
nohup emulator -avd $item -no-skin -no-audio -no-window & | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment