Linux find命令中-exec参数的作用

2016-02-19 15:34 8 1 收藏

今天给大家分享的是由图老师小编精心为您推荐的Linux find命令中-exec参数的作用,喜欢的朋友可以分享一下,也算是给小编一份支持,大家都不容易啊!

【 tulaoshi.com - Linux教程 】

我们都知道,Linux命令加上不同的参数其效果也不同,下面图老师小编将针对Linux fing命令中的-exec 参数给大家做个详细介绍,以便你有个了解。

 Linux find命令中-exec参数的作用

exec解释:

-exec 参数后面跟的是command命令,它的终止是以;为结束标志的,所以这句命令后面的分号是不可缺少的,考虑到各个系统中分号会有不同的意义,所以前面加反斜杠。

{} 花括号代表前面find查找出来的文件名。

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

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

命令:

find 。 -type f -exec ls -l {} ;

输出:

代码如下:

[root@localhost test]# find 。 -type f -exec ls -l {} ;

-rw-r--r-- 1 root root 127 10-28 16:51 。/log2014.log

-rw-r--r-- 1 root root 0 10-28 14:47 。/test4/log3-2.log

-rw-r--r-- 1 root root 0 10-28 14:47 。/test4/log3-3.log

-rw-r--r-- 1 root root 0 10-28 14:47 。/test4/log3-1.log

-rw-r--r-- 1 root root 33 10-28 16:54 。/log2013.log

-rw-r--r-- 1 root root 302108 11-03 06:19 。/log2012.log

-rw-r--r-- 1 root root 25 10-28 17:02 。/log.log

-rw-r--r-- 1 root root 37 10-28 17:07 。/log.txt

-rw-r--r-- 1 root root 0 10-28 14:47 。/test3/log3-2.log

-rw-r--r-- 1 root root 0 10-28 14:47 。/test3/log3-3.log

-rw-r--r-- 1 root root 0 10-28 14:47 。/test3/log3-1.log

[root@localhost test]#

说明:

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)

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

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

命令:

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

输出:

代码如下:

[root@localhost test]# ll

总计 328

-rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log

-rw-r--r-- 1 root root 33 10-28 16:54 log2013.log

-rw-r--r-- 1 root root 127 10-28 16:51 log2014.log

lrwxrwxrwx 1 root root 7 10-28 15:18 log_link.log -》 log.log

-rw-r--r-- 1 root root 25 10-28 17:02 log.log

-rw-r--r-- 1 root root 37 10-28 17:07 log.txt

drwxr-xr-x 6 root root 4096 10-27 01:58 scf

drwxrwxrwx 2 root root 4096 10-28 14:47 test3

drwxrwxrwx 2 root root 4096 10-28 14:47 test4

[root@localhost test]# find 。 -type f -mtime +14 -exec 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]#

说明:

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)

在shell中用任何方式删除文件之前,应当先查看相应的文件,一定要小心!当使用诸如mv或rm命令时,可以使用-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

[root@localhost test]# ll

总计 312

-rw-r--r-- 1 root root 302108 11-03 06:19 log2012.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]#

说明:

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)

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

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

命令:

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

输出:

代码如下:

[root@localhost test]# find /etc -name passwd* -exec grep root {} ;

root:x:0:0:root:/root:/bin/bash

root:x:0:0:root:/root:/bin/bash

[root@localhost test]#

说明:

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)

任何形式的命令都可以在-exec选项中使用。在上面的例子中我们使用grep命令。find命令首先匹配所有文件名为 passwd*的文件,例如passwd、passwd.old、passwd.bak,然后执行grep命令看看在这些文件中是否存在一个root用户。

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

命令:

find 。 -name *.log -exec mv {} 。。 ;

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)

输出:

代码如下:

[root@localhost test]# ll

总计 12drwxr-xr-x 6 root root 4096 10-27 01:58 scf

drwxrwxr-x 2 root root 4096 11-12 22:49 test3

drwxrwxr-x 2 root root 4096 11-12 19:32 test4

[root@localhost test]# cd test3/

[root@localhost test3]# ll

总计 304

-rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log

-rw-r--r-- 1 root root 61 11-12 22:44 log2013.log

-rw-r--r-- 1 root root 0 11-12 22:25 log2014.log

[root@localhost test3]# find 。 -name *.log -exec mv {} 。。 ;

[root@localhost test3]# ll

总计 0[root@localhost test3]# cd 。。

[root@localhost test]# ll

总计 316

-rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log

-rw-r--r-- 1 root root 61 11-12 22:44 log2013.log

-rw-r--r-- 1 root root 0 11-12 22:25 log2014.log

drwxr-xr-x 6 root root 4096 10-27 01:58 scf

drwxrwxr-x 2 root root 4096 11-12 22:50 test3

drwxrwxr-x 2 root root 4096 11-12 19:32 test4

[root@localhost test]#

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

命令:

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

输出:

代码如下:

[root@localhost test3]# ll

总计 0[root@localhost test3]# cd 。。

[root@localhost test]# ll

总计 316

-rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log

-rw-r--r-- 1 root root 61 11-12 22:44 log2013.log

-rw-r--r-- 1 root root 0 11-12 22:25 log2014.log

drwxr-xr-x 6 root root 4096 10-27 01:58 scf

drwxrwxr-x 2 root root 4096 11-12 22:50 test3

drwxrwxr-x 2 root root 4096 11-12 19:32 test4

[root@localhost test]# find 。 -name *.log -exec cp {} test3 ;

cp: 。/test3/log2014.log 及 test3/log2014.log 为同一文件

cp: 。/test3/log2013.log 及 test3/log2013.log 为同一文件

cp: 。/test3/log2012.log 及 test3/log2012.log 为同一文件

[root@localhost test]# cd test3

[root@localhost test3]# ll

总计 304

-rw-r--r-- 1 root root 302108 11-12 22:54 log2012.log

-rw-r--r-- 1 root root 61 11-12 22:54 log2013.log

-rw-r--r-- 1 root root 0 11-12 22:54 log2014.log

[root@localhost test3]#

上面就是Linux find命令中-exec参数的用法介绍了,find命令的参数还有很多,如果你还想了解其他参数的使用,详见系统之家Linux find命令中-path -prune参数的作用介绍。

来源:http://www.tulaoshi.com/n/20160219/1609909.html

延伸阅读
标签: 电脑入门
在进行Linux命令操作的时候,有时会搜索出许多目录,而这些目录又不是我们所需要的,这时就可以将其忽略。下面图老师小编就教大家如何使用find命令忽略子目录。 使用find命令在linux系统中查找文件时,有时需要忽略某些目录,可以使用 -prune 参数来进行过滤。 不过必须注意:要忽略的路径参数要紧跟着搜索的路径之后,否则该参数无法起作...
标签: 电脑入门
Linux下mail命令对于系统管理员来说比较经常使用,是个很实用的命令,可定期寄一些备忘录提醒系统用户,下面图老师小编就给大家详细介绍下Linux中的mail命令吧。 首先通过help参数来查看mail的所有参数如下: 代码如下: Usage: mail [-BDFintv~] [-s subject] [-a attachment ] [-c cc-addr] [-b bcc-addr] [-r from-addr...
标签: 服务器
Linux中cron命令的用法详解   linux中有一个命令可以定期来执行系统任务。这就是crond服务。下面介绍下crontab命令的用法。 linux任务调度的工作主要分为以下两类: 编辑/etc/crontab 文件配置cron cron服务每分钟不仅要读一次 /var/spool/cron内的所有文件,还需要读一次/etc/crontab,因此我们配置这个文件也能运用...
标签: 电脑入门
Linux中ldd命令主要用于查看程式运行所需的共享库,那么ldd命令具体要如何使用呢?下面图老师小编就给大家介绍下Linux下ldd命令的使用方法,感兴趣的朋友一起来学习下吧。 ldd命令用于判断某个可执行的 binary 档案含有什么动态函式库 Linux Ldd参数说明: --version打印ldd的版本号 -v --verbose打印所有信息,例如包括符号的版本信...
标签: 服务器
linux中which命令使用详解   我们经常在linux要查找某个文件,但不知道放在哪里了,可以使用下面的一些命令来搜索: which 查看可执行文件的位置。 whereis 查看文件的位置。 locate 配合数据库查看文件位置。 find 实际搜寻硬盘查询文件名称。 which命令的作用是,在PATH变量指定的路径中,搜索某个系统命...

经验教程

820

收藏

100
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部