## 批量删除key ```shell # 模糊删除 /home/redis/src/redis-cli -h 172.16.51.92 -p 6379 -a hisense@123 keys 'PRO:*' | xargs /home/redis/src/redis-cli -h 172.16.51.92 -p 6379 -a hisense@123 del ``` 用到了 xargs 命令 ## 查看redis版本 ```shell # 查看redis版本 /home/redis/src/redis-server -v ```