摘要: find 命令 # 如下两种方式,速度均挺快,但是通过grep 是匹配的会匹配很多 find / -name test.txt # 精确查找名称为test.txt的文件 find / | grep test.txt touch test{1..10}.txt # 查找并删除文件 find . | g 阅读全文
posted @ 2020-09-23 23:37 pigeast 阅读(133) 评论(0) 推荐(0)
摘要: Centos7 安装redis 1) 下载redis源码包尝试安装 # 地址:http://download.redis.io/releases/ # 下载最新稳定版 (此链接目前最新的版本为6.0.8) wget http://download.redis.io/releases/redis-st 阅读全文
posted @ 2020-09-23 17:38 pigeast 阅读(173) 评论(0) 推荐(0)