simple redis addition
This commit is contained in:
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
for key in $(redis-cli -p 6379 keys \*);
|
||||
do echo "Key : '$key'"
|
||||
redis-cli -p 6379 GET $key;
|
||||
done
|
||||
Reference in New Issue
Block a user