Created
February 22, 2012 15:22
-
-
Save aabril/1885522 to your computer and use it in GitHub Desktop.
sorted list of keys on redis, separated by ":" , for a older versions of redis-cli
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
| echo "*" | redis-cli keys | sed "s/\s/\n/g" | cut -d ":" -f 2 | sort -n | more |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mostrar cada key : value de redis en bash for i inecho "*" | redis-cli keys | sed "s/\s/\n/g" | sort -n; do echo $i" "echo $i | redis-cli get; done;