Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save inversion/89f5dbff2bd5fef1018c07dba5d44849 to your computer and use it in GitHub Desktop.
Save inversion/89f5dbff2bd5fef1018c07dba5d44849 to your computer and use it in GitHub Desktop.
List the drains for all your heroku apps
$(which ggrep || which grep) -oP '(^[a-z].+) ' | xargs -n 1 -I % sh -c 'echo % && heroku drains --app %;'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment