Skip to content

Instantly share code, notes, and snippets.

@samuelsharaf
Forked from naaman/delete-heroku-apps.sh
Created March 27, 2017 21:56
Show Gist options
  • Save samuelsharaf/948edd3c30ce66193756b41d3b62b551 to your computer and use it in GitHub Desktop.
Save samuelsharaf/948edd3c30ce66193756b41d3b62b551 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