【Linux常用命令之find查找文件】使用find查找当前路径以及子路径下的某个文件
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
↵linux下查找某个文件夹以及子文件夹文件的命令:
find ./ -name index.html
注释:
1.find 查找命令
2../ 当前路径
3.-name 按照文件名查询
4.index.html 要查询的文件名
------ 20231102 更新
find ./ -type f -name "tms.bak*" -mtime +60 |xargs rm -rf
-type f 或者 -type d 是指定搜索文件类型,f是file文件,d是dir文件夹。
-mtime 是按照天数 正数表示多少天开外
xargs rm -rf 管道符加这个,可以将前边的查询结果删除,建议先查询后删除
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:3 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)