find

find -name

从location下递归使用名称查找文件
比如 find / -name redis* 是查找 / 下匹配文件名为 redis 以及 redis*

find -type -name

查找指定类型, 其中 type 可以为 d 或者 f

find -type -name | xargs

可以用 管道 + xargs 将查询结果做进一步处理