Skip to content

Instantly share code, notes, and snippets.

@2bard
Created February 13, 2014 12:11
Show Gist options
  • Save 2bard/8973995 to your computer and use it in GitHub Desktop.
Save 2bard/8973995 to your computer and use it in GitHub Desktop.
Launch all Android Virtual Devices from command line
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