Created
November 30, 2018 11:25
-
-
Save jpzk/66695931252929d8348531e60c7d496c to your computer and use it in GitHub Desktop.
Easy way to delete schemas in the schema registry
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
apt install peco | |
apt install curl | |
curl http://localhost:8081/subjects | jq .[] | tr -d "\"" | peco | xargs -I '{}' curl -v -X DELETE http://localhost:8081/subjects/'{}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment