Skip to content

Instantly share code, notes, and snippets.

@christiannwamba
Forked from naaman/delete-heroku-apps.sh
Created October 25, 2017 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christiannwamba/d924b5ae87232cc25418df88c9dbd2a2 to your computer and use it in GitHub Desktop.
Save christiannwamba/d924b5ae87232cc25418df88c9dbd2a2 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