Created
January 6, 2020 08:27
-
-
Save rizalgowandy/71ee7ce7274767a3ef90d873c554d72a to your computer and use it in GitHub Desktop.
This file contains 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
redis-cli keys "*" > keys | |
cat keys | xargs -n 1 -L 1 redis-cli ttl > ttl | |
paste -d " " keys ttl | grep .*-1$ | cut -d " " -f 1 > without_ttl | |
# We can create a script for deleting the keys | |
cat without_ttl | awk '{print "redis-cli del "$1}' > redis.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment