find pathname -options [-print -exec -ok]
find有两个参数:
find命令搜索不建议过大的搜索范围,会消耗较大的系统资源,导致服务器压力过大。
find 搜索路径 【选项】 搜索内容
选项:
举例说明:
# 搜索的文件名必须和你的搜索内容一致才能找到。如果只包含搜索内容,则不会找到。
[wqf@b1i10 rm_test]$ find ./ -name test_3.txt
./test_3.txt
Linux 中的文件名是区分大小写的,也就是说,搜索小写文件,是找不到大写文件的。
# 不区分文件名大小写,用iname
[wqf@b1i10 rm_test]$ find ./ -iname test_3.txt
./TEST_3.TXT
./test_3.txt
每个文件都有 inode 号,如果我们知道 inode 号,则也可以按照 inode 号来搜索文件。
# 如果知道文件名,用"ls -i"来査找inode号
[wqf@b1i10 rm_test]$ ls -i test_3.sh
29884450 test_3.sh
# 如果知道inode号,则可以用find命令来査找文件
[wqf`在这里插入代码片`@b1i10 rm_test]$ find ./ -inum 29884450
./test_3.sh
基于目录深度搜索
find 命令是递归遍历文件夹,列出当前目录及子目录下所有文件
命令 " find ./ -name "*.txt" " ,./ 路径下列出当前目录及子目录下以.txt结尾的文件。
如果想不递归查找文件夹,只要当前目录下的符合搜索范围的文件。
命令 " find ./ -maxdepth 1 -name "\*.txt" " ,./ 当前目录下查找以.txt结尾的文件,-maxdepth 1表示查找深度为1。
如果想搜索当前目录下面至少2个子目录的所有文件
命令 " find ./ -mindepth 2 -name "\*.txt" "
find 搜索路径 【选项】 搜索内容
选项:
find 默认的单位是512Byte,如果单位为b或不写单位,则按照 512Byte搜索,其他大小搜索单位如下:
'c' for bytes
#搜索单位是c,按照字节搜索
'w' for two-byte words
#搜索单位是w,按照双字节(中文)搜索
'k'for Kilobytes (units of 1024 bytes)
#按照KB单位搜索,必须是小写的k
'M' for Megabytes (units of 1048576 bytes)
#按照MB单位搜索,必须是大写的M
'G' for Gigabytes (units of 1073741824 bytes)
#按照GB单位搜索,必须是大写的G
举例说明:
# 当前目录下面有一个大小是2M的文件
[wqf@b1i10 rm_test]$ ls -l --block-size=M mon_tj_cal.txt
-rw-rw-r-- 1 summary_fz_province summary_fz_province 2M Dec 2 12:53 mon_tj_cal.txt
# 当前目录下,查找大小刚好2M的文件,可以找到
[wqf@b1i10 rm_test]$ find ./ -size 2M
./mon_tj_cal.txt
# 搜索小于2M的文件,可以找到很多其他文件
[wqf@b1i10 rm_test]$ find ./ -size -2M
./
./mon_tj_cal.sh
./file.patch
./test_3.sh
./file1.txt
./newtest1
./4.sh
./TEST_3.TXT
./test.txt
./testfile.txt
./1.txt
./test_3.txt
./newtest2
./execute_test.sh
./file2.txt
./test_1.sh
./mon_tj_cal_1.sh
./test_2.sh
find 搜索路径 【选项】 搜索内容
选项:
以mtime来举例 “[±]” 时间的含义。
-5:代表 5 内修改的文件。
5:代表前 5~6 天那一天修改的文件。
+5:代表 6 天前修改的文件。
# 查找6天前修改的文件
[wqf@b1i10 rm_test]$ find ./ -mtime +5
./mon_tj_cal.sh
./newtest1
./4.sh
./test.txt
./testfile.txt
./1.txt
./mon_tj_cal.txt
./newtest2
./gz_silence_val_1.sh
./execute_test.sh
./mon_tj_cal_1.sh
# 查找5天内修改过的文件
[wqf@b1i10 rm_test]$ find ./ -mtime -5
./
./test_3.sh
./TEST_3.TXT
./test_3.txt
./test_1.sh
./test_2.sh
# 查找 5~6 天那天修改的文件
[wqf@b1i10 rm_test]$ find ./ -mtime 5
./file.patch
./file1.txt
./file2.txt
find 搜索路径 【选项】 搜索内容
选项:
举例说明:
# 查找./目录下面有哪些子目录
[wqf@b1i10 zxt_test]$ find ./ -type d
./
./take_data
./make_data
./drop_tables
./drop_tables/history
./drop_tables/test
./rm_test
./python
./push_data
find 搜索路径 【选项】 搜索内容
选项:
Linux下文件的权限类型一般包括读,写,执行。对应字母为 r、w、x。我们规定 数字 4 、2 和 1表示读、写、执行权限(具体原因可见下节权限详解内容),即 r=4,w=2,x=1 。
Linux下权限的粒度有 拥有者 、群组 、其它组 三种。每个文件都可以针对三个粒度,设置不同的rwx(读写执行)权限
举例说明:
# 测试
[wqf@b1i10 test]$ touch test_1.sh test_2.sh test_3.sh test_4.sh
[wqf@b1i10 test]$ chmod 200 test_1.sh (只有拥有者有写的权限。)
[wqf@b1i10 test]$ chmod 444 test_2.sh (所有用户只拥有读的权限。)
[wqf@b1i10 test]$ chmod 600 test_3.sh (只有拥有者有读写权限。)
[wqf@b1i10 test]$ chmod 755 test_4.sh (拥有者有读、写、执行权限;而属组用户和其他用户只有读、执行权限。)
# 查看权限
[wqf@b1i10 test]$ ll
total 0
--w------- 1 wqf wqf 0 Jan 10 15:13 test_1.sh
-r--r--r-- 1 wqf wqf 0 Jan 10 15:13 test_2.sh
-rw------- 1 wqf wqf 0 Jan 10 15:13 test_3.sh
-rwxr-xr-x 1 wqf wqf 0 Jan 10 15:13 test_4.sh
# 按照指定权限搜索文件,文件的权限必须和搜索指定的权限一致,才能找到
[wqf@b1i10 test]$ find ./ -perm 200
./test_1.sh
[wqf@b1i10 test]$ find ./ -perm 444
./test_2.sh
# "-perm-权限模式":必须完全包含。
# 因为 test_1.sh 的权限是200(--w-------)、test_3.sh 的权限600(-rw-------)、test_4.sh 的权限755(-rwxr-xr-x),所以可以找到;而test_2.sh的权限是(-r--r--r--),不包括200(--w-------)权限,所以找不到。
[wqf@b1i10 test]$ find ./ -perm -200
./
./test_3.sh <-此文件权限为600
./test_4.sh <-此文件权限为755
./test_1.sh <-此文件权限为200
# "-perm+权限模式":包含任意一个指定权限,就可以找到。
# 因为test_2.sh的权限444(-r--r--r--)、test_3.sh 的权限600(-rw-------)、test_4.sh 的权限755(-rwxr-xr-x)都含有444(-r--r--r--)权限,所以可以找到;而test_1.sh 的权限是200(--w-------),所以找不到。
[wqf@b1i10 test]$ find ./ -perm /+444
./
./test_3.sh <-此文件权限为600
./test_4.sh <-此文件权限为755
./test_2.sh <-此文件权限为444
find 搜索路径 【选项】 搜索内容
选项:
find 搜索路径 【选项】 搜索内容
选项:
举例说明:
1)-a:and逻辑与
find 命令也支持逻辑运算符选项,其中 -a 代表逻辑与运算,也就是 -a 的两个条件都成立,find 搜索的结果才成立。
#在当前目录下搜索等于1115KB,并且文件类型是普通文件的文件
[wqf@b1i10 rm_test]$ find ./ -size 1115k -a -type f
./mon_tj_cal.txt
2) -o:or逻辑或
-o 选项代表逻辑或运算,也就是 -o 的两个条件只要其中一个成立,find 命令就可以找到结果。
#在当前目录下搜索文件名要么是cals的文件,要么是test_3.sh的文件
[wqf@b1i10 rm_test]$ find ./ -name cals -o -name test_3.sh
./test_3.sh
./test/test_3.sh
3) -not:not逻辑非
-not是逻辑非,也就是取反的意思。
#在当前目录下搜索文件名不是test_3.sh的文件
[wqf@b1i10 test]$ find ./ -not -name test_3.sh
./
./test_4.sh
./test_1.sh
./test_2.sh
1)-exec选项
find 搜索路径 【选项】 搜索内容 -exec 命令2 {} \;
注意: 这里的"{}“和”\;“是标准格式,只要执行”-exec"选项,这两个符号必须完整输入,并且{} 与 \之间有空格。这个选项的作用其实是把 find 命令的结果交给由"-exec"调用的命令 2 来处理。"{}"就代表 find 命令的査找结果, \ 做转义,; 结束符。
举例说明:
# 查找当前开始30天之前的并且文件名以".log"结尾的文件并删除
# 使用"-exec"选项,把find命令结果直接交给"rm -rf"命令处理。
find ./ -type f -name "*.log" -mtime +30 -maxdepth 1 -exec rm -rf {} \;
2)-ok选项
find 搜索路径 【选项】 搜索内容 -ok 命令2 {} \;
与"-exec"选项的作用基本一致,区别在于:“-exec"的命令会直接处理,而不询问;”-ok"的命令 2 在处理前会先询问用户是否这样处理,在得到确认命令后,才会执行。
举例说明:
# 使用rm命令来删除find找到的结果,删除的动作最好确认一下
[wqf@b1i10 test]$ find ./ -perm 444 -ok rm -rf {} \;
< rm ... ./test_2.sh > ? y # 需要用户输入y,才会执行
3)-print选项:将find命令匹配的文件输出到标准输出
find 搜索路径 【选项】 搜索内容 -print ;
举例说明:
# 查找当前文件夹下文件名以".log"结尾的文件并输出到屏幕
[wqf@b1i10 rm_test]$ find ./ -name "*.log" -print
./data_val_520_13138333854_2022122200.log
./data_val_520_20221221_2022122117.log
./mon_tj_cal_1_2022120515.log
./mon_tj_cal_1_2022120510.log