Skip to content

Instantly share code, notes, and snippets.

@syntaxhacker
Forked from naaman/delete-heroku-apps.sh
Created January 22, 2020 18:49
Show Gist options
  • Save syntaxhacker/c8bb7d94ec047500384e74d1647c6ca1 to your computer and use it in GitHub Desktop.
Save syntaxhacker/c8bb7d94ec047500384e74d1647c6ca1 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