Skip to content

Instantly share code, notes, and snippets.

@ismaels
Created October 17, 2013 12:24
Show Gist options
  • Save ismaels/7023961 to your computer and use it in GitHub Desktop.
Save ismaels/7023961 to your computer and use it in GitHub Desktop.
Remove all keys that follow the indicated pattern from redis using the "redis-cli del" command.
redis-cli keys "TripVo*" | cut -d" " -f 2 | xargs redis-cli del
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment