Skip to content

Instantly share code, notes, and snippets.

@gwintrob
Created December 4, 2014 20:03
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gwintrob/6abc086b2425f3a8d5c8 to your computer and use it in GitHub Desktop.
Save gwintrob/6abc086b2425f3a8d5c8 to your computer and use it in GitHub Desktop.
Delete redis keys with unmatched single quotes
redis-cli KEYS 'icc*' | xargs -d '\n' redis-cli DEL
@maestr0
Copy link

maestr0 commented Dec 21, 2015

xargs -d '\n'  

doesn't work on OSX. Use this instead

xargs -0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment