Skip to content

Instantly share code, notes, and snippets.

@jpzk
Created November 30, 2018 11:25
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpzk/66695931252929d8348531e60c7d496c to your computer and use it in GitHub Desktop.
Save jpzk/66695931252929d8348531e60c7d496c to your computer and use it in GitHub Desktop.
Easy way to delete schemas in the schema registry
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