Skip to content

Instantly share code, notes, and snippets.

@benlovell
Created April 19, 2013 13:40
Show Gist options
  • Save benlovell/5420421 to your computer and use it in GitHub Desktop.
Save benlovell/5420421 to your computer and use it in GitHub Desktop.
Print commands to delete rabbitmq queues.
rabbitmqadmin list queues | awk '{print $4}' | awk 'NF!=0 {print}' | awk '{print "rabbitmqadmin delete queue name="$0}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment