Linux|Linux find命令查找文件
Linux Find命令
Linux find命令用来在指定目录下查找文件。
学习参考地址:https://www.runoob.com/linux/linux-comm-find.html
语法
findpath-option[-print ][ -exec-okcommand ]{} \;
常用搜索解析
d:目录(文件夹)
f:一般文件
|:符号连接
搜索示例 示例1
- 将目前目录及其子目录下所有延伸档名末尾含b 的文件列出来。
find ./ -name "*b"
[root@localhost bin]# find ./ -name "*b"
./makedb
./lastb
./msgattrib
./ranlib
./rpmdb
./systemd-hwdb
./crontab
./setvtrgb
./mandb
[root@localhost bin]#
- 搜索指定名字文件
find -name t2.txt
[root@localhost /]# find -name t2.txt
//搜索t2.txt文件
./usr/bin/t2.txt
./usr/bin/t1/t2/t3/t4/t5/t2.txt
//加载出系统所有t2.txt的文件,因为未设置查询目录。当前查询位置在根目录,所以对全盘文件进行了查询
更多实例
- 将目前目录其其下子目录中所有一般文件列出
# find . -type f
- 将目前目录及其子目录下所有最近 20 天内更新过的文件列出
# find . -ctime -20
- 查找/var/log目录中更改时间在7日以前的普通文件,并在删除之前询问它们:
# find /var/log -type f -mtime +7 -ok rm {} \;
推荐阅读
- Linux下面如何查看tomcat已经使用多少线程
- Beego打包部署到Linux
- 你命令我爱你吧(原创)
- Linux|109 个实用 shell 脚本
- linux定时任务contab
- 芯灵思SinlinxA33开发板Linux内核定时器编程
- 常用git命令总结
- day16-Linux|day16-Linux 软件管理
- 用Go构建区块链——3.持久化和命令行
- 《读_Head_First_有感》_“命令模式”