linux find命令详解

     Find是一个非常有效的工具,它可以遍历当前目录甚至于整个文件系统来查找某些文件或目录。 Find命令的一般形式为:
 find pathname -options [-print -exec -ok]
让我们来看看该命令的参数:
pathname find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。
-print find命令将匹配的文件输出到标准输出。
-exec find命令对匹配的文件执行该参数所给出的s h e l l命令。相应命令的形式为' c o m m -
and' {} \;,注意{ }和\;之间的空格。
-ok 和- e x e c的作用相同,只不过以一种更为安全的模式来执行该参数所给出的s h e l l命令,在执行每一个命令之前,都会给出提示,让用户来确定是否执行。

     f i n d命令有很多选项或表达式,每一个选项前面跟随一个横杠-。让我们先来看一下该命
令的主要选项,然后再给出一些例子。
-name 按照文件名查找文件。
-perm 按照文件权限来查找文件。
-prune 使用这一选项可以使f i n d命令不在当前指定的目录中查找,如果同时使用了- d e p t h
选项,那么- p r u n e选项将被f i n d命令忽略。
-user 按照文件属主来查找文件。
-group 按照文件所属的组来查找文件。
-mtime -n +n 按照文件的更改时间来查找文件, - n表示文件更改时间距现在n天以内,+ n
表示文件更改时间距现在n天以前。F i n d命令还有- a t i m e和- c t i m e选项,但它们都和- m t i m e选项

相似,所以我们在这里只介绍- m t i m e选项。
-nogroup 查找无有效所属组的文件,即该文件所属的组在/ e t c / g r o u p s中不存在。
-nouser 查找无有效属主的文件,即该文件的属主在/ e t c / p a s s w d中不存在。
-newer file1 ! file2 查找更改时间比文件f i l e 1新但比文件f i l e 2旧的文件。
-type 查找某一类型的文件,诸如:
b - 块设备文件。
d - 目录。
c - 字符设备文件。
p - 管道文件。
l - 符号链接文件。
f - 普通文件。
-size n[c] 查找文件长度为n块的文件,带有c时表示文件长度以字节计。
-depth 在查找文件时,首先查找当前目录中的文件,然后再在其子目录中查找。
-fstype 查找位于某一类型文件系统中的文件,这些文件系统类型通常可以在配置文件
/ e t c / f s t a b中找到,该配置文件中包含了本系统中有关文件系统的信息。
-mount 在查找文件时不跨越文件系统m o u n t点。
-follow 如果f i n d命令遇到符号链接文件,就跟踪至链接所指向的文件。
-cpio 对匹配的文件使用c p i o命令,将这些文件备份到磁带设备中。

举例说明:

[root@localhost ext]# ll
总计 16
-rw-r--r-- 1 root root    0 05-06 13:41 1.txt
drwxr-xr-x 2 mzl  mzl  4096 05-06 13:41 ab
lrwxrwxrwx 1 root root   11 05-06 13:41 passwd -> /etc/passwd

[root@localhost ext]# find /ext -name "a*"               
/ext/ab

[root@localhost ext]# find /ext -perm  755
/ext
/ext/ab

[root@localhost ext]# find /ext -user mzl
/ext/ab

[root@localhost ext]# find /ext -group mzl
/ext/ab

[root@localhost ext]# find /var/log  -mtime +3
/var/log/vbox
/var/log/httpd
/var/log/ppp
/var/log/samba
/var/log/conman.old
/var/log/conman

[root@localhost ext]# find /var/log  -mtime -3
/var/log
/var/log/cron
/var/log/gdm
/var/log/gdm/:0.log
/var/log/gdm/:0.log.3
/var/log/gdm/:0.log.4
......

[root@localhost ext]# touch -t 05061200 redhat
[root@localhost ext]# ll -lh
总计 20K
-rw-r--r-- 1 root root    0 05-06 13:41 1.txt
drwxr-xr-x 2 mzl  mzl  4.0K 05-06 13:41 ab
lrwxrwxrwx 1 root root   11 05-06 13:41 passwd -> /etc/passwd
-rw-r--r-- 1 root root    0 05-06 12:00 redhat
[root@localhost ext]# find /ext -newer redhat
/ext
/ext/1.txt
/ext/ab
/ext/passwd

[root@localhost ext]# find /ext -type d
/ext
/ext/ab
[root@localhost ext]# find /ext -type l
/ext/passwd

[root@localhost ext]# find /ext -size +20c
/ext
/ext/ab

[root@localhost ext]# find -mount -name ab
./ab

[root@localhost ext]#find /var/logs -type f -mtime +7 -exec rm {} \;

[root@localhost ext]#find /etc -type f -mtime -5|xargs file

你可能感兴趣的:(linux,职场,find,休闲)