Skip to content

Instantly share code, notes, and snippets.

View samuelsharaf's full-sized avatar

Samuel Sharaf samuelsharaf

  • Salesforce.com
  • San Francisco
View GitHub Profile
@samuelsharaf
samuelsharaf / delete-heroku-apps.sh
Created March 27, 2017 21:56 — forked from naaman/delete-heroku-apps.sh
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
@samuelsharaf
samuelsharaf / delete-heroku-apps.sh
Created March 27, 2017 21:56 — forked from naaman/delete-heroku-apps.sh
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