Show all keys in redis - in one line Show all keys in redis - in one line linux linux

Show all keys in redis - in one line


You need to do

redis-cli keys '*'

to avoid your shell from expanding * into a list of filenames.