find命令-exec参数

find是很常用的一个Linux命令,但是一般查找出来的并不仅仅是看看而已,还会有进一步的操作,这个时候exec的作用就显现出来了。
exec解释:

  • -exec 参数后面跟的是command命令,它的终止是以;为结束标志的,所以这句命令后面的分号是不可缺少的,考虑到各个系统中分号会有不同的意义,所以前面加反斜杠。
    {}花括号代表前面find查找出来的文件名。

在使用find时,只要把想要的操作写在一个文件里,就可以用exec来配合find查找,很方便的。在有些操作系统中只允许-exec选项执行诸如lsls -l这样的命令。大多数用户使用这一选项是为了查找旧文件并删除它们。建议在真正执行rm命令删除文件之前,最好先用ls命令看一下,确认它们是所要删除的文件。 exec选项后面跟随着所要执行的命令或脚本,然后是一对{ },一个空格和一个\,最后是一个分号。为了使用exec选项,必须要同时使用print选项。如果验证一下find命令,会发现该命令只输出从当前路径起的相对路径及文件名。

实例1:ls -l命令放在find命令的-exec选项中

命令:

find . -type f -exec ls -l {} \;

演示执行及输出:

[root@localhost zaixian]# find . -type f -exec ls -l {} \;
-rw-r--r--. 1 zaixian zaixian 18 Aug  2  2016 ./.bash_logout
-rw-r--r--. 1 zaixian zaixian 193 Aug  2  2016 ./.bash_profile
-rw-r--r--. 1 zaixian zaixian 231 Aug  2  2016 ./.bashrc
-rw-rw-r--. 1 zaixian zaixian 30 Feb 13 03:14 ./test/mylog1.log
-rw-rw-r--. 1 zaixian zaixian 60 Feb 13 03:15 ./test/mylog2.log
-rw-rw-r--. 1 zaixian zaixian 49 Feb 13 03:20 ./test/log.txt
-rw-rw-r--. 1 zaixian zaixian 388 Feb 13 20:11 ./test/log.log
-rw-r--r--. 1 zaixian zaixian 11843 Feb 13 20:27 ./test/is line 1.
-rw-r--r--. 1 zaixian zaixian 3270 Feb 13 20:29 ./test/t
-rw-r--r--. 1 zaixian zaixian 11843 Feb 13 20:29 ./test/t test]$ cat log.log
-rw-rw-r--. 1 zaixian zaixian 229633 Feb 15 03:06 ./test/ping.log
-rw-rw-r--. 1 zaixian zaixian 9 Feb 12 22:46 ./test3/test4/test41/test.txt
-rw-rw-r--. 1 zaixian zaixian 26 Feb 13 01:15 ./test5/mylog.log
-rw-rw-r--. 1 zaixian zaixian 9 Feb 12 22:46 ./test5/test3/test4/test41/test.txt
-rw-rw-r--. 1 zaixian zaixian 0 Feb 13 01:26 ./mylog.log
-rw-rw-r--. 1 zaixian zaixian 9 Feb 12 22:46 ./test-noexists/test4/test41/test.txt
-rw-------. 1 zaixian zaixian 540 Feb 13 20:34 ./.lesshst
[root@localhost zaixian]#

说明: 上面的例子中,find命令匹配到了当前目录下的所有普通文件,并在-exec选项中使用ls -l命令将它们列出。

实例2:在目录中查找更改时间在n日以前的文件并删除它们

命令:

find . -type f -mtime +14 -exec rm {} \;

演示执行及输出:

[root@localhost zaixian]# ll
total 0
lrwxrwxrwx. 1 zaixian zaixian   9 Feb 13 01:26 mylog_link.log -> mylog.log
-rw-rw-r--. 1 zaixian zaixian   0 Feb 13 01:26 mylog.log
drwxrwxr-x. 2 zaixian zaixian 143 Feb 15 02:16 test
drwxrwxr-x. 2 zaixian zaixian   6 Feb 12 22:33 test1
drwxrwxr-x. 2 zaixian zaixian   6 Feb 12 22:33 test2
drwxrwxr-x. 3 zaixian zaixian  19 Feb 12 22:58 test3
drwxrwxr-x. 3 zaixian zaixian  36 Feb 13 01:20 test5
drwxrwxr-x. 3 zaixian zaixian  19 Feb 12 22:58 test-noexists
[root@localhost zaixian]# find . -type f -mtime +2 -exec rm {} \;

说明:在shell中用任何方式删除文件之前,应当先查看相应的文件,一定要小心!当使用诸如mvrm命令时,可以使用-exec选项的安全模式。它将在对每个匹配到的文件进行操作之前提示。

实例3:在目录中查找更改时间在n日以前的文件并删除它们,在删除之前先给出提示

命令:

find . -name "*.log" -mtime +5 -ok rm {} \;

演示执行及输出:

[root@localhost test]# ll
总计 312
-rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log
lrwxrwxrwx 1 root root      7 10-28 15:18 log_link.log -> log.log
drwxr-xr-x 6 root root   4096 10-27 01:58 scf
drwxrwxrwx 2 root root   4096 11-12 19:32 test3
drwxrwxrwx 2 root root   4096 11-12 19:32 test4
[root@localhost test]# find . -name "*.log" -mtime +5 -ok rm {} \;
< rm ... ./log_link.log > ? y
< rm ... ./log2012.log > ? n

说明:在上面的例子中, find命令在当前目录中查找所有文件名以.log结尾、更改时间在5日以上的文件,并删除它们,只不过在删除之前先给出提示。 按y键删除文件,按n键不删除。

实例4:-exec中使用grep命令

命令:

find /etc -name "passwd*" -exec grep "root" {} \;

演示执行及输出:

[root@localhost zaixian]# find /etc -name "passwd*" -exec grep "root" {} \;
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
[root@localhost zaixian]# find /etc -name "passwd*" -exec grep "zaixian" {} \;
zaixian:x:1000:1000:zaixian:/home/zaixian:/bin/bash
zaixian:x:1000:1000:zaixian:/home/zaixian:/bin/bash
[root@localhost zaixian]#

说明:任何形式的命令都可以在-exec选项中使用。在上面的例子中我们使用grep命令。find命令首先匹配所有文件名为“passwd*”的文件,例如:passwdpasswd.oldpasswd.bak,然后执行grep命令看看在这些文件中是否存在一个rootzaixian用户(需要以root用户身份操作)。

实例5:查找文件移动到指定目录

命令:

find . -name "*.log" -exec mv {} .. \;

演示执行及输出:

[root@localhost zaixian]# find . -name "*.log" -exec mv {} .. \;
[root@localhost zaixian]# ls
test  test1  test2  test3  test5  test-noexists
[root@localhost zaixian]# cd ..
[root@localhost home]# ll
total 280
-rw-rw-r--. 1 zaixian zaixian    388 Feb 13 20:11 log.log
-rw-rw-r--. 1 zaixian zaixian     30 Feb 13 03:14 mylog1.log
-rw-rw-r--. 1 zaixian zaixian     60 Feb 13 03:15 mylog2.log
lrwxrwxrwx. 1 zaixian zaixian      9 Feb 13 01:26 mylog_link.log -> mylog.log
-rw-rw-r--. 1 zaixian zaixian      0 Feb 15 20:15 mylog.log
-rw-rw-r--. 1 zaixian zaixian 229633 Feb 15 03:06 ping.log
-rw-r--r--. 1 zaixian zaixian  11843 Feb 13 20:29 t test]$ cat log.log
drwx------. 8 zaixian zaixian    128 Feb 15 20:21 zaixian
[root@localhost home]#

实例6:用exec选项执行cp命令

命令:

find . -name "*.log" -exec cp {} test3 \;

演示执行及输出:

[zaixian@localhost ~]$ ll
total 0
-rw-r--r--. 1 zaixian zaixian  0 Feb 15 20:23 file2.log
-rw-r--r--. 1 zaixian zaixian  0 Feb 15 20:23 file.log
drwxrwxr-x. 2 zaixian zaixian 48 Feb 15 20:21 test
drwxrwxr-x. 2 zaixian zaixian  6 Feb 12 22:33 test1
drwxrwxr-x. 2 zaixian zaixian  6 Feb 12 22:33 test2
drwxrwxr-x. 3 zaixian zaixian 19 Feb 12 22:58 test3
drwxrwxr-x. 3 zaixian zaixian 19 Feb 15 20:21 test5
drwxrwxr-x. 3 zaixian zaixian 19 Feb 12 22:58 test-noexists
[zaixian@localhost ~]$ ll test3/
total 0
drwxrwxr-x. 3 zaixian zaixian 20 Feb 12 22:46 test4
[zaixian@localhost ~]$ find . -name "*.log" -exec cp {} test3 \;
[zaixian@localhost ~]$ ll test3/
total 0
-rw-r--r--. 1 zaixian zaixian  0 Feb 15 20:28 file2.log
-rw-r--r--. 1 zaixian zaixian  0 Feb 15 20:28 file.log
drwxrwxr-x. 3 zaixian zaixian 20 Feb 12 22:46 test4
[zaixian@localhost ~]$

上一篇: find命令 下一篇: find命令-xargs参数