Linux学习之find命令

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

exec解释:

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

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

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

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

命令:

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

输出:

 1 [[email protected] test]# find . -type f -exec ls -l {} \;
 2 -rw-r--r-- 1 root root 127 10-28 16:51 ./log2014.log
 3 -rw-r--r-- 1 root root 0 10-28 14:47 ./test4/log3-2.log
 4 -rw-r--r-- 1 root root 0 10-28 14:47 ./test4/log3-3.log
 5 -rw-r--r-- 1 root root 0 10-28 14:47 ./test4/log3-1.log
 6 -rw-r--r-- 1 root root 33 10-28 16:54 ./log2013.log
 7 -rw-r--r-- 1 root root 302108 11-03 06:19 ./log2012.log
 8 -rw-r--r-- 1 root root 25 10-28 17:02 ./log.log
 9 -rw-r--r-- 1 root root 37 10-28 17:07 ./log.txt
10 -rw-r--r-- 1 root root 0 10-28 14:47 ./test3/log3-2.log
11 -rw-r--r-- 1 root root 0 10-28 14:47 ./test3/log3-3.log
12 -rw-r--r-- 1 root root 0 10-28 14:47 ./test3/log3-1.log
13 [[email protected] test]#

说明:

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

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

命令:

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

输出:

 1 [[email protected] test]# ll
 2 总计 328
 3 -rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log
 4 -rw-r--r-- 1 root root     33 10-28 16:54 log2013.log
 5 -rw-r--r-- 1 root root    127 10-28 16:51 log2014.log
 6 lrwxrwxrwx 1 root root      7 10-28 15:18 log_link.log -> log.log
 7 -rw-r--r-- 1 root root     25 10-28 17:02 log.log
 8 -rw-r--r-- 1 root root     37 10-28 17:07 log.txt
 9 drwxr-xr-x 6 root root   4096 10-27 01:58 scf
10 drwxrwxrwx 2 root root   4096 10-28 14:47 test3
11 drwxrwxrwx 2 root root   4096 10-28 14:47 test4
12 [[email protected] test]# find . -type f -mtime +14 -exec rm {} \;
13 [[email protected] test]# ll
14 总计 312
15 -rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log
16 lrwxrwxrwx 1 root root      7 10-28 15:18 log_link.log -> log.log
17 drwxr-xr-x 6 root root   4096 10-27 01:58 scf
18 drwxrwxrwx 2 root root   4096 11-12 19:32 test3
19 drwxrwxrwx 2 root root   4096 11-12 19:32 test4
20 [[email protected] test]# 

说明:

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

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

命令:

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

输出:

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

说明:

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

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

命令:

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

输出:

1 [[email protected] test]# find /etc -name "passwd*" -exec grep "root" {} \;
2 root:x:0:0:root:/root:/bin/bash
3 root:x:0:0:root:/root:/bin/bash
4 [[email protected] test]#

说明:

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

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

命令:

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

输出:

 1 [[email protected] test]# ll
 2 总计 12drwxr-xr-x 6 root root 4096 10-27 01:58 scf
 3 drwxrwxr-x 2 root root 4096 11-12 22:49 test3
 4 drwxrwxr-x 2 root root 4096 11-12 19:32 test4
 5 [[email protected] test]# cd test3/
 6 [[email protected] test3]# ll
 7 总计 304
 8 -rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log
 9 -rw-r--r-- 1 root root     61 11-12 22:44 log2013.log
10 -rw-r--r-- 1 root root      0 11-12 22:25 log2014.log
11 [[email protected] test3]# find . -name "*.log" -exec mv {} .. \;
12 [[email protected] test3]# ll
13 总计 0[[email protected] test3]# cd ..
14 [[email protected] test]# ll
15 总计 316
16 -rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log
17 -rw-r--r-- 1 root root     61 11-12 22:44 log2013.log
18 -rw-r--r-- 1 root root      0 11-12 22:25 log2014.log
19 drwxr-xr-x 6 root root   4096 10-27 01:58 scf
20 drwxrwxr-x 2 root root   4096 11-12 22:50 test3
21 drwxrwxr-x 2 root root   4096 11-12 19:32 test4
22 [[email protected] test]#

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

命令:

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

输出:

 1 [[email protected] test3]# ll
 2 总计 0[[email protected] test3]# cd ..
 3 [[email protected] test]# ll
 4 总计 316
 5 -rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log
 6 -rw-r--r-- 1 root root     61 11-12 22:44 log2013.log
 7 -rw-r--r-- 1 root root      0 11-12 22:25 log2014.log
 8 drwxr-xr-x 6 root root   4096 10-27 01:58 scf
 9 drwxrwxr-x 2 root root   4096 11-12 22:50 test3
10 drwxrwxr-x 2 root root   4096 11-12 19:32 test4
11 [[email protected] test]# find . -name "*.log" -exec cp {} test3 \;
12 cp: “./test3/log2014.log” 及 “test3/log2014.log” 为同一文件
13 cp: “./test3/log2013.log” 及 “test3/log2013.log” 为同一文件
14 cp: “./test3/log2012.log” 及 “test3/log2012.log” 为同一文件
15 [[email protected] test]# cd test3
16 [[email protected] test3]# ll
17 总计 304
18 -rw-r--r-- 1 root root 302108 11-12 22:54 log2012.log
19 -rw-r--r-- 1 root root     61 11-12 22:54 log2013.log
20 -rw-r--r-- 1 root root      0 11-12 22:54 log2014.log
21 [[email protected] test3]#
时间: 2024-10-30 04:16:37

Linux学习之find命令的相关文章

linux学习笔记-type命令

语法: type [-tpa] name 参数: type:    不加任何参数时,type会显示出name是外部命令还是内部bash内置命令 -t:      当加入-t参数时,type会将name以下面这些字眼显示出它的意义 file:表示为外部命令 alias:表示该命令为命令别名所设置的名称 builtin:表示该命令为bash内置的命令功能 -p:     如果后面接的name为外部命令时,才显示完整文件名 -a:     会有path变量定义的路径中,将所有含有name的命令都列出来

Linux学习之touch命令

Linux学习之touch命令 Linux的touch命令一般用来更改文档或目录的日期时间,包括存取时间和更改时间,或者新建一个不存在的文件. 1.命令格式: touch [选项]... 文件... 2.命令参数: -a   或--time=atime或--time=access或--time=use 只更改存取时间. -c   或--no-create 不建立任何文档. -d 使用指定的日期时间,而非现在的时间. -f 此参数将忽略不予处理,仅负责解决BSD版本touch指令的兼容性问题. -

linux 学习2 常用命令

1.显示日期的指令: date 2.   [Tab]按键---具有『命令补全』不『档案补齐』的功能 3:  su和 sudo  su用于用户之间的切换.  su在不加任何参数,默认为切换到root用户; su 加参数 - ,表示默认切换到root用户,并且改变到root用户的环境: sudo用于普通用户可以使用root权限来执行指定命令. sudo : 暂时切换到超级用户模式以执行超级用户权限,提示输入密码时该密码为当前用户的密码,而不是超级账户的密码.不过有时间限制,Ubuntu默认为一次时长

linux学习笔记——基础命令、快捷键与认识虚拟机

虚拟机[[email protected] Desktop]$ rht-vmctl start desktop     ###开启Starting desktop.[[email protected] Desktop]$ rht-vmctl view desktop    ##显示[[email protected] Desktop]$ rht-vmctl stop desktop    ##正常关闭虚拟机[[email protected] Desktop]$ rht-vmctl powero

Linux学习之less命令

less 工具也是对文件或其它输出进行分页显示的工具,应该说是linux正统查看文件内容的工具,功能极其强大.less 的用法比起 more 更加的有弹性.在 more 的时候,我们并没有办法向前面翻, 只能往后面看,但若使用了 less 时,就可以使用 [pageup] [pagedown] 等按键的功能来往前往后翻看文件,更容易用来查看一个文件的内容!除此之外,在 less 里头可以拥有更多的搜索功能,不止可以向下搜,也可以向上搜. 1.命令格式: less [参数]  文件 2.命令功能:

LInux学习之常用命令ls

命令格式与目录处理命令ls 命令格式:  命令[-选项][参数] 例如:  ls -la /etc 说明: 1)个别命令使用不遵循此格式 2)当多个选项时,可以写在一起 3)简化选项与完整选项 -a 等于--all PS:在Linux中“.”代表的是隐藏文件. 目录处理命令:ls 命令名称: ls 命令英文原意: list 命令所在路径: /bin/ls 执行权限: 所有用户 功能描述: 显示目录文件 语法: ls 选项[-ald][文件或目录] -a  显示所有文件,包括隐藏文件 -l  详细

Linux学习笔记——常用命令(一)

Linux分区的四个基本步骤: 1)分区:硬盘划分为逻辑分区 2)格式化逻辑分区(写入文件系统) 3)分区设备文件名:给每个分区定义设备文件名 4)挂载点:给每个分区分配挂载点 注意事项: 1)必须分区: /   /boot  /swap 2)一块硬盘最多4个分区,最多1个扩展分区,扩展分区又可以包含多个逻辑分区 设置密码原则: 1)复杂性 2)易记性 3)时效性 目录usr(unlix software resource) 防火墙:用来过滤,制定一系列的规则(IP.MAC.端口等) Linux

Linux学习笔记--which命令(搜索命令的命令)

which,哪一个的意思,作用是从PATH环境变量指定的路径中,搜索命令所在位置及命令别名. which命令特点: 1) "which" 命令只能查找系统命令,不能搜索普通文件. 2) "which" 命令是从PATH环境变量指定的路径中,搜索某个系统命令的位置, 并且返回第一个搜索结果. PATH环境变量: PATH:决定了shell将到哪些目录中寻找命令或程序,PATH的值是一系列目录,用":"隔开,当您运行一个命令时,Linux在这些目录下

Linux学习之查找命令汇总

我们经常在linux要查找某个文件,但不知道放在哪里了,可以使用下面的一些命令来搜索:        which  查看可执行文件的位置.       whereis 查看文件的位置.        locate   配合数据库查看文件位置.       find   实际搜寻硬盘查询文件名称. which命令的作用是,在PATH变量指定的路径中,搜索某个系统命令的位置,并且返回第一个搜索结果.也就是说,使用which命令,就可以看到某个系统命令是否存在,以及执行的到底是哪一个位置的命令. 1.

Linux学习笔记--locate命令(文件搜索命令)

locate,定位的意思,作用是让使用者可以快速的搜寻系统中是否有指定的文件. locate 命令特点: 1) "locate"的速度比"find"快,因为它并不是真的查找文件,而是查数据库. 2) 新建的文件,我们立即用"locate"命令去查找,一般是找不到的, 因为数据库的更新不是实时的,数据库的更新时间由系统维护. 3) "locate"命令所搜索的后台数据库在"/var/lib/mlocate"这