Created
May 3, 2021 18:35
-
-
Save bashkirtsevich/bab38e754b68ca11b7367b09cc2abc60 to your computer and use it in GitHub Desktop.
RabbitmqCtl delete queues
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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