标签:find命令
5.find命令使用
#find [路径] [参数] [动作]
与时间有关的参数:atime ctime mtime
-newr file
列:寻找etc下面 ,如果文件日期比/etc/passwd新就列出来
#find /etc -newr /etc/passwd
与用户或用户组有关的参数
- uid n:n为数字uid为n的文件
-gid n:n为数字gid为n的文件
-user name:所属主为name的文件。
-group name:所属组为name的文件。
-nouser 寻找文件不在/etc/passwd中的文件
-nogroup 寻找文件不在/etc/group中的文件
与文件权限及名称有关的文件
-name filename 查找文件名为filename的文件
-size [+-] 查找比size 大,小的文件
-type TYPE 查找文件名为type的文件
-perm mode 权限等于mode的文件
-perm -mode 权限必须全部包括mode的文件
+perm +mode 权限包含任意mode权限的文件
其他
-exec command {} \ ;
本文出自 “linux” 博客,请务必保留此出处http://1038457789.blog.51cto.com/10025869/1631331
标签:find命令
原文地址:http://1038457789.blog.51cto.com/10025869/1631331