🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 1.递归查找(find 命令 是递归遍历文件夹的) ``` find . -name "*.txt" ``` ## 2.不递归查找 ``` find . -name "*.txt" -maxdepth 1 ``` ![](https://img.kancloud.cn/87/0a/870a7b5819d2dbc3c18b5752a3b9c300_627x329.png)