Skip to content

Instantly share code, notes, and snippets.

@feczo
Last active August 29, 2015 14:04
Show Gist options
  • Save feczo/ce6447b816104228c9f6 to your computer and use it in GitHub Desktop.
Save feczo/ce6447b816104228c9f6 to your computer and use it in GitHub Desktop.
Delete ALL your compute engine instances from the default project

delete EVERY instance

gcutil --format=names listinstances | while read inst; do gcutil deleteinstance $inst -f --delete_boot_pd&; done;

Only Unused ones

gcutil listinstances --filter="status ne RUNNING" --format=names | while read inst; do gcutil deleteinstance $inst -f --delete_boot_pd&; done;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment