Skip to content

Instantly share code, notes, and snippets.

@apeckham
Last active October 6, 2015 02:18
Show Gist options
  • Save apeckham/2918620 to your computer and use it in GitHub Desktop.
Save apeckham/2918620 to your computer and use it in GitHub Desktop.
list all addons for all heroku apps
for app in `heroku apps | awk '{ print $1 }'`; do heroku addons --app $app; done
for app in `heroku apps | awk '{ print $1 }'`; do echo $app; heroku ps --app $app; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment