Skip to content

Instantly share code, notes, and snippets.

@joecannatti
Created March 21, 2016 20:06
Show Gist options
  • Save joecannatti/7381fab1169b9fa836df to your computer and use it in GitHub Desktop.
Save joecannatti/7381fab1169b9fa836df to your computer and use it in GitHub Desktop.
Count Heroku Dynos for an Org
for app in `heroku apps --org stitchfix-enterprise | tail -n +2`; do heroku ps:type -a $app | grep -v cost/mo | grep -v -- -----; done | awk '{print $3}' | xargs | sed 's/ /+/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment