Skip to content

Instantly share code, notes, and snippets.

@dev-pmartins
Created September 6, 2016 22:30
Show Gist options
  • Save dev-pmartins/e459fedff9fa46d3f2aa62264cebc16a to your computer and use it in GitHub Desktop.
Save dev-pmartins/e459fedff9fa46d3f2aa62264cebc16a to your computer and use it in GitHub Desktop.
# in order: find keys by prefix on redis, filter only keys, run redis get command | filter content by key
redis-cli keys ww_product_* | awk '{print $1}' | xargs -n 1 redis-cli get | grep SAC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment