Linux|Linux find命令查找文件

Linux Find命令 Linux find命令用来在指定目录下查找文件。
学习参考地址:https://www.runoob.com/linux/linux-comm-find.html
语法

findpath-option[-print ][ -exec-okcommand ]{} \;

常用搜索解析
d:目录(文件夹) f:一般文件 |:符号连接

搜索示例 示例1
  1. 将目前目录及其子目录下所有延伸档名末尾含b 的文件列出来。find ./ -name "*b"
[root@localhost bin]# find ./ -name "*b" ./makedb ./lastb ./msgattrib ./ranlib ./rpmdb ./systemd-hwdb ./crontab ./setvtrgb ./mandb [root@localhost bin]#

  1. 搜索指定名字文件 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的文件,因为未设置查询目录。当前查询位置在根目录,所以对全盘文件进行了查询

更多实例
  1. 将目前目录其其下子目录中所有一般文件列出
# find . -type f
  1. 将目前目录及其子目录下所有最近 20 天内更新过的文件列出
# find . -ctime -20
  1. 查找/var/log目录中更改时间在7日以前的普通文件,并在删除之前询问它们:
【Linux|Linux find命令查找文件】# find /var/log -type f -mtime +7 -ok rm {} \;

    推荐阅读