Skip to content

Instantly share code, notes, and snippets.

@salmazov
Forked from naaman/delete-heroku-apps.sh
Created September 27, 2017 13:08
Show Gist options
  • Save salmazov/111fd7b7184f14552748216ea7ec65e0 to your computer and use it in GitHub Desktop.
Save salmazov/111fd7b7184f14552748216ea7ec65e0 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