Git Ultiple Branch Delete

Open the terminal, or equivalent.
Type in git branch | grep "<pattern>" for a preview of the branches that will be deleted.
Type in git branch | grep "<pattern>" | xargs git branch -D.
codeAesthetic