Skip to content

Instantly share code, notes, and snippets.

@bashkirtsevich
Created May 3, 2021 18:35
Show Gist options
  • Save bashkirtsevich/bab38e754b68ca11b7367b09cc2abc60 to your computer and use it in GitHub Desktop.
Save bashkirtsevich/bab38e754b68ca11b7367b09cc2abc60 to your computer and use it in GitHub Desktop.
RabbitmqCtl delete queues
rabbitmqctl list_queues | sort -r | awk '{if (length($1) == 36) print $1}' | while read queue ; do rabbitmqctl delete_queue $queue & done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment