find 查找目录下的文件
1. 命令功能
find命令用于查到目录下的文件,同时也可以调用其它命令执行相应操作。
2. 语法格式
find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [path...] [expression]
find [-H] [-L] [-P] [-Olevel] [pathname] [expression]
find [选项] [ 路径 ] [操作语句]
常见用法示例:
find path -option [ -print ] [ -exec -ok command ] {} \;
3. 使用范例
1.基础使用范例
范例1: 在/下查找test.txt文件
[root@localhost ~]# find / -name "test.txt"
/root/test.txt
/home/test.txt
范例2: 查找指定时间内修改过的文件,查找在/home目录下1天内访问过的文件
[root@localhost home]# find /home -atime -1 # -atime 表示在多少天访问过;-1:1天内
/home
/home/test.txt
/home/cxf
/home/cxf/.bash_history
/home/cxf/ok
/home/cxf/ok/a
....
范例3: 查找在/home 2天内修改过的文件
/home/cxf/ok/a/b
/home/cxf/ok/a/b/c
/home/cxf/dir2
/home/cxf/dir2/123.txt
/home/cxf/.lesshst
范例4 :用-name指定关键字查找
[root@localhost home]# find /home -mtime -1 -name "*.txt"
/home/test.txt
/home/cxf/dir2/123.txt
范例5: 利用“!”反向查找
[root@localhost home]# find /home -type d #在/home目录下查找目录 –type d表示目录
/home
/home/cxf
/home/cxf/ok
/home/cxf/ok/a
/home/cxf/ok/a/b
/home/cxf/ok/a/b/c
/home/cxf/dir2
/home/DIR
[root@localhost home]# find /home ! -type d #查找不是目录的文件
/home/test.txt
/home/cxf/.bash_history
/home/cxf/.bash_logout
/home/cxf/.bashrc
/home/cxf/.bash_profile
/home/cxf/dir2/123.txt
范例6:按照目录或文件的权限来查找文件 -perm
[root@localhost home]# find /home -perm 755
/home
/home/cxf/ok
/home/cxf/ok/a
范例7:按大小查找文件
[root@localhost home]# find . -size +1000c | xargs ls -lhd
drwxr-xr-x. 4 root root 4.0K Mar 14 22:45 .
drwx------. 4 cxf cxf 4.0K Mar 14 00:16 ./cxf
-rw-------. 1 cxf cxf 4.4K Mar 14 00:18 ./cxf/.bash_history
drwxr-xr-x. 2 root root 4.0K Mar 14 00:17 ./cxf/dir2
范例 8:查找文件时希望忽略某个目录
准备工作:
[root@localhost home]# mkdir /home/data/{dir1,dir2,dir3} -p
[root@localhost home]# ls -l ./data/
total 12
drwxr-xr-x. 2 root root 4096 Mar 15 22:01 dir1
drwxr-xr-x. 2 root root 4096 Mar 15 22:01 dir2
drwxr-xr-x. 2 root root 4096 Mar 15 22:01 dir3
[root@localhost home]# ls ./data/{dir1,dir2,dir3}
./data/dir1:
file1.txt
./data/dir2:
file2.txt
./data/dir3:
file3.txt
查找/home/data目录下的文件,但是需要忽略/home/data/dir2目录
查到对比:
- 查找/home/data目录下的内容
[root@localhost home]# find /home/data
/home/data
/home/data/dir3
/home/data/dir3/file3.txt
/home/data/dir2
/home/data/dir2/file2.txt
/home/data/dir1
/home/data/dir1/file1.txt
- 忽略/home/data/dir2目录
[root@localhost home]# find /home/data -path "/home/data/dir2" -prune -o -print
/home/data
/home/data/dir3
/home/data/dir3/file3.txt
/home/data/dir1
/home/data/dir1/file1.txt
参数说明:find /home/data -path "/home/data/dir2" -prune -o –print
find /home/data 是查找指定目录/home/data下的内容
-path “/home/data/dir2”是查找/home/data/dir2目录
-o 表示取并集不在当前指定目录下查找
-prune表示
-print将匹配的文件输出到标准输出(默认功能,使用中可省略)
范例9 :忽略多个目录
[root@localhost home]# find /home/data \( -path /home/data/dir1 -o -path /home/data/dir3 \) -prune -o -print
/home/data
/home/data/dir2
/home/data/dir2/file2.txt
范例10: 使用user和nouser选项
[cxf@localhost test]$ ls -lh
total 4.0K
drwxrwxr-x. 2 cxf cxf 4.0K Mar 15 22:30 cxf_dir
-rw-rw-r--. 1 cxf cxf 0 Mar 15 22:30 cxf.txt
[root@localhost home]# find /home/cxf -user cxf
/home/cxf
/home/cxf/.bash_history
/home/cxf/test
/home/cxf/test/cxf.txt
/home/cxf/test/cxf_dir
-user 表示有属主的文件;-nouser表示没有属主的文件。-nouser时查找哪些属主账号被删除的文件。 使用-nouser选项不必给出用户。
其中group和nogroup 与user用法一致。
范例11: find正则表达式
-name参数只支持“*”“?”“[]”这三个通配符,碰到复杂要求,就必须用到正则表达式。
find正则表达式语法如下:
find –pathname –repextype “type” –regex “pattern”
示例:
[root@localhost ~]# find / -regex ".*cxf"
/var/spool/mail/cxf
/home/cxf
范例:12: ls –l命令放在find命令的-exec选项中执行
[root@localhost home]# find . -type f -exec ls -l {} \;
-rw-------. 1 cxf cxf 4499 Mar 14 00:18 ./cxf/.bash_history
-rw-rw-r--. 1 cxf cxf 0 Mar 15 22:30 ./cxf/test/cxf.txt
-rw-r--r--. 1 cxf cxf 18 May 11 2016 ./cxf/.bash_logout
-rw-r--r--. 1 cxf cxf 124 May 11 2016 ./cxf/.bashrc
-rw-r--r--. 1 cxf cxf 176 May 11 2016 ./cxf/.bash_profile
-rw-------. 1 cxf cxf 51 Mar 13 11:39 ./cxf/.lesshst
-rw-r--r--. 1 root root 0 Mar 15 22:03 ./data/dir3/file3.txt
-rw-r--r--. 1 root root 0 Mar 15 22:03 ./data/dir2/file2.txt
-rw-r--r--. 1 root root 0 Mar 15 22:03 ./data/dir1/file1.txt
说明:-exec后面跟的是command命令,最后以分号(;)作为结束标志。为了不让分号产生歧义分号前用\转义。
{}的作用:指代前面find命令查找的内容
上面命令可以用:find . -type f |xargs ls –l 替换
find 查找目录下的文件的更多相关文章
- linux递归查找目录下所有文件夹以及文件
相对于ls或者ll,可能find在这个时候更加给力 先看我的目录结构 tree命令是查看目录的结构,而且最后会列出所有的directory的数目以及文件夹的数目...好像我们接下来要做的就没有必要了, ...
- linux 查找目录下的文件内容并替换(批量)
2.sed和grep配合 命令:sed -i s/yyyy/xxxx/g `grep yyyy -rl --include="*.txt" ./` 作用:将当前目录(包括子目录)中 ...
- [转载] linux查找目录下的所有文件中是否含有某个字符串
链接自 http://blog.sina.com.cn/s/blog_691a84f301015khx.html,并略加修订. 查找目录下的所有文件中是否含有某个字符串 find .|xargs gr ...
- linux查找目录下的所有文件中是否含有某个字符串
查找目录下的所有文件中是否含有某个字符串 find .|xargs grep -ri "IBM" find .|xargs grep -ri "IBM" -l ...
- 查找目录下的所有文件中是否含有某个字符串 linux
查找目录下的所有文件中是否含有某个字符串 find .|xargs grep -ri "IBM" 查找目录下的所有文件中是否含有某个字符串,并且只打印出文件名 find .|xar ...
- 用shell查找某个目录下最大文件
网上资料学习: 1.查找当前目录下最大文件(包括子目录里文件): find . -type f -exec stat -c "%s %n" {} \; | sort -nr | h ...
- linux查找目录下的所有文件中是否含有某个字符串 (转)
查找目录下的所有文件中是否含有某个字符串 find .|xargs grep -ri "IBM" 查找目录下的所有文件中是否含有某个字符串,并且只打印出文件名 find .|xar ...
- linux查找目录下的所有文件中是否含有某个字符串 <zhuan>
查找目录下的所有文件中是否含有某个字符串 find .|xargs grep -ri "IBM" 查找目录下的所有文件中是否含有某个字符串,并且只打印出文件名 find .|xar ...
- Linux查找和替换目录下所有文件中字符串(转载)
转自:http://rubyer.me/blog/1613/ 单个文件中查找替换很简单,就不说了.文件夹下所有文件中字符串的查找替换就要记忆了,最近部署几十台linux服务器,记录下总结. 查找文件夹 ...
随机推荐
- 获取浏览区变化的方法resize() 方法
当调整浏览器窗口的大小时,发生 resize 事件. resize() 方法触发 resize 事件,或规定当发生 resize 事件时运行的函数. <html> <head> ...
- Collections 索引
About Me NOIp 数据结构专题总结 NOIp 图论算法专题总结 NOIp 基础数论知识点总结 NOIp 数学知识点总结 搜索算法总结 (不包含朴素 DFS, BFS) 位运算 字符串算法总结 ...
- 个推一键认证SDK重磅推出,打造秒级登录体验,让用户一“键”倾心
移动互联网时代,用户注意力的持续时间越来越短,他们追求便捷与高效.从账号密码登录.短信验证,到第三方登录甚至人脸识别登录,APP的注册/登录方式在逐步变化,开发者希望在这重要的交互端口提升用户的体验, ...
- DAY 4 下午
一些图论的知识(主要补充一下之前不了解的和比较重要) 竞赛图:完全图上的边加方向 仙人掌:每一条边至多属于一个环 前序:中左右 中序:左中右 后序:左右中 先加进去无向边 把每一个联通块看成一个大点 ...
- VUE Right-hand side of ‘instanceof’ is not an object 解决方案
这里要注意一下, props之前没注意写成了 props: { wrd: '', sname:'zs' }, 这样是不能被解析成object的,所以一定要写的更具体一点 ...
- 【LeetCode】 两数之和 twoSum
两数之和 (简单) 题目描述 给定一个整数数组和一个目标值,找出数组中和为目标值的两个数: 你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用. 例如: 给定 nums = [2,7,11, ...
- SpringBoot 切换国际化
git:https://github.com/xiaozhuanfeng/demoProj 代码结构: application.properties: spring.messages.basename ...
- JSPDF 原理
Jspdf是一个将html内容生成pdf文件的库,原理是对输入浏览器的文字或二进制图片进行base64编码转换,以pdf中应有的形式组织,最终以data uri scheme, data:applic ...
- 【ABAP系列】SAP ABAP ALV设置背景图片
公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[MM系列]SAP abap ALV设置背景图片 ...
- Temporal-Difference Learning for Prediction
In Monte Carlo Learning, we've got the estimation of value function: Gt is the episode return from t ...