####3.find####
1.locate filename ##在文件数据库中搜索filename信息,updatedb更新文件数据库
2.find
find 查找位置 -条件 条件值 -exec 动作 {} \;
-name
-not 条件
-user ######所属用户查找
-group ######所属组查找
-size ######文件大小查找
-perm ######按照权限查找
-maxdepth #####按照最大层数查找
-mindepth #####按照最小层数查找
-a #####表示并且
-o #####表示或者
-type f 文件
d 目录
c 字符设备
b 块设备
s 套节字
l 链接
首先在/mnt 下建立文件
find /mnt -user student
find /mnt -group linux
find /mnt -user student -a -group linux
find /mnt -user student -o -group linux
find /mnt -user student -a -group linux
find /mnt -user student
find /mnt -user student -a -not -group linux
dd if=/dev/zero of=/mnt/file1 bs=1024 count=10
dd if=/dev/zero of=/mnt/file2 bs=1024 count=20
dd if=/dev/zero of=/mnt/file3 bs=1024 count=30
find /mnt -size 10k
find /mnt -size -10k
find /mnt -size +10k