一.题目
find
1.查找 /tmp 目录下名字为 aming开头的所有文件。
2.搜索tmp目录下所属组group1,所属主user1的文件
3.搜索根目录下的 1.txt 2.txt 和 a 目录
4.搜索tmp目录下以 a 开头并且以 c 结尾的文件
5.搜索 tmp 目录下,不是以 a 开头,并且大小超过100M的文件
二.命令
1.查找 /tmp 目录下名字为 aming开头的所有文件。
[root@localhost ~]# find /tmp -name "aming*"
[root@localhost ~]#
2.搜索tmp目录下所属组group1,所属主user1的文件
[root@localhost ~]# find /tmp -group group1
[root@localhost ~]# find /tmp -user user1
3.搜索根目录下的 1.txt 2.txt 和 a 目录
[root@localhost ~]# find / -path "/1.txt"
/1.txt
[root@localhost ~]# find / -path "/2.txt"
/2.txt
[root@localhost ~]# find / -path "/a"
/a
4.搜索tmp目录下以 a 开头并且以 c 结尾的文件
[root@localhost tmp]# cd ~
[root@localhost ~]# find /tmp -name "a*c"
/tmp/aeuhgc
/tmp/abc
/tmp/abdc
5.搜索 tmp 目录下,不是以 a 开头,并且大小超过100M的文件
[root@localhost tmp]# find /tmp -not -name "a*" -a -name "*txt" -size +100M -tyep f