发布时间:2014-05-22 17:04:56作者:知识屋
在当前目录和子目录下查找文件MyCProgram.c
# find . -name "MyCProgram.c"
查找文件且忽略大小写
# find . -iname "MyCProgram.c"
查找不包含MyCProgram.c的文件
find . -maxdepth 1 -not -iname "MyCProgram.c"
在/下3到5级子目录中查找passwd
# find / -mindepth 3 -maxdepth 5 -name passwd
查找且执行命令
find . -iname "MyCProgram.c" -exec md5sum {} ;
查找大于100m的文件
# find ~ -size +100M
查找小于100m的文件
# find ~ -size -100M
查找等于100m的文件
# find ~ -size 100M
查找目录及子目录下最大的5个文件
find . -type f -exec ls -s {} ; | sort -n -r | head -5
查找目录及子目录下最小的5个文件
# find . -type f -exec ls -s {} ; | sort -n | head -5
查找size非零且最小的5个文件
# find . -not -empty -type f -exec ls -s {} ; | sort -n | head -5
查找所有用户都有写权限的文件
# find . -perm -g=w -type f -exec ls -l {} ;
在/logs目录中查找更改时间在5日以前的文件并删除它们
$ find logs -type f -mtime +5 -exec rm { } ;
查找/var/logs目录中更改时间在7日以前的普通文件,并在删除之前询问它们
$ find /var/logs -type f -mtime +7 -ok rm { } ;
可以使用某种文件名模式来匹配文件,记住要用引号将文件名模式引起来,否则匹配展开后会导致find的参数混乱
$ find . -name [A-Z]* -print
在当前目录下查找文件权限位为755的文件,即文件属主可以读、写、执行,其他用户可以读、执行的文件,可以用
$ find . -perm 755 -print
2012-07-10
CentOS 6.3安装(详细图解教程)
Linux怎么查看网卡驱动?Linux下查看网卡的驱动程序
centos修改主机名命令
Ubuntu或UbuntuKyKin14.04Unity桌面风格与Gnome桌面风格的切换
FEDORA 17中设置TIGERVNC远程访问
StartOS 5.0相关介绍,新型的Linux系统!
解决vSphere Client登录linux版vCenter失败
LINUX最新提权 Exploits Linux Kernel <= 2.6.37
nginx在网站中的7层转发功能