Skip to content

Instantly share code, notes, and snippets.

@umkasanki
Forked from naaman/delete-heroku-apps.sh
Created April 12, 2018 05:39
Show Gist options
  • Save umkasanki/186a82a9f2f4e6bad7401ccc26356c6f to your computer and use it in GitHub Desktop.
Save umkasanki/186a82a9f2f4e6bad7401ccc26356c6f 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