Is there a way to pass the return value of one function to another in Redis? Of course, if you're using a language wrapper (like Ruby), it's easy — but what about from the CLI?
e.g. something like this, bash style
redis 127.0.0.1:6379> keys student* | mget
or something like this
redis 127.0.0.1:6379> mget(keys student*)
keys student*
will return a list of keys, but I've no idea how to fetch all the values for those keys.
Thoughts?