Skip to content

Instantly share code, notes, and snippets.

@akkijp
Forked from naaman/delete-heroku-apps.sh
Created April 10, 2016 11:30
Show Gist options
  • Save akkijp/ca9511e3b602cee2fe5615e01f2bdd4e to your computer and use it in GitHub Desktop.
Save akkijp/ca9511e3b602cee2fe5615e01f2bdd4e to your computer and use it in GitHub Desktop.
Delete all heroku apps from bash terminal -- no script file required
for app in $(heroku apps); do heroku apps:destroy --app $app --confirm $app; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment