博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
3.shell编程-文件查找之find命令
阅读量:5224 次
发布时间:2019-06-14

本文共 2364 字,大约阅读时间需要 7 分钟。

3.1.语法格式

find [路劲][选项][操作]

选项参数对照表

3.2.-name   

查找/etc/目录下以.conf结尾的文件

find /etc/ -name "*.conf"

-iname   不区分大小写

find /etc/ -iname "*.conf"

-user      查找当前目录为root用户的文件

find ./ -user root

3.3.-type   

文件的类型

  • f     文件
  • d    目录
  • c    字符设备文件
  • b    块设备文件
  • l     链接文件
  • p    管道文件 
find . -type ffind . -type d

3.4.-size

文件大小

  • -n    小与n的文件
  • +n   大于n的文件

 查找/etc目录下小与100k的文件

find /etc -size -100k

查找/etc目录下大于1M的文件

find /etc -size +1M

3.5.-mtime

修改时间

  • -n    n天以内修改的文件
  • +n   n天以外修改的文件
  • n     正好n天修改的文件

 查找/etc目录下5天之内修改并且以conf结尾的文件

find /etc -mtime -5 -name '*.conf'

查找/etc目录下10天之前修改并且属主为root的文件

find /etc -mtime +10 -user root

3.6.-mmin

  • -n    n分钟以内修改的文件
  • +n   n分钟以外修改的文件

修改/etc目录下30分钟以内修改的目录

find /etc -mmin -30 -type d

3.7.-mindepth 

表示从n级子目录开始搜索

find /etc -mindepth 3 -type -f

-madepth n

表示最多搜索到n-1级子目录

3.8.操作-exec

对搜索的文件常用操作

  •  -print   打印输出
  • -exec    对文件执行特定的操作
  • -ok        和exec功能意义,只是每次操作都会给用户提示

-exec的格式为

-exec 'command' {} \

例子一:

搜索/home/shell_learn/下的文件,文件名以.sh结尾,且修改时间在一个星期之内的,然后将其删除

#打印find /home/shell_learn/ -type f -name '*.sh' -mtime -7 -print#复制find /home/shell_learn/ -type f -name '*.sh' -mtime -7 -exec cp {} /home/shell_learn/test/ \;#删除find /home/shell_learn/ -type f -name '*.sh' -mtime -7 -exec rm -rf {} \;

3.9.locate命令

locate不同于find命令是在整块磁盘中搜索,locate命令是在数据库文件中查找

find是默认全局匹配,locate则是默认部分匹配

updatedb命令

  • 用户更新/var/lib/mlocate/mlocate.db
  • 所使用的配置文件/etc/updatedb.conf

 实例:updatedb命令把文件更新到数据库(默认是第二天系统才会自动更新到数据库),否则locate查找不到

[root@VM_0_9_centos shell_learn]# touch 789.txt[root@VM_0_9_centos shell_learn]# [root@VM_0_9_centos shell_learn]# locate 789.txt[root@VM_0_9_centos shell_learn]# [root@VM_0_9_centos shell_learn]# updatedb[root@VM_0_9_centos shell_learn]# [root@VM_0_9_centos shell_learn]# locate 789.txt/home/shell_learn/789.txt[root@VM_0_9_centos shell_learn]#

3.10 .whereis命令

实例

[root@VM_0_9_centos shell_learn]# whereis mysqlmysql: /usr/bin/mysql /usr/lib64/mysql /usr/include/mysql /usr/share/mysql /usr/share/man/man1/mysql.1.gz[root@VM_0_9_centos shell_learn]# [root@VM_0_9_centos shell_learn]# whereis -b mysqlmysql: /usr/bin/mysql /usr/lib64/mysql /usr/include/mysql /usr/share/mysql[root@VM_0_9_centos shell_learn]# [root@VM_0_9_centos shell_learn]# whereis -m mysqlmysql: /usr/share/man/man1/mysql.1.gz[root@VM_0_9_centos shell_learn]#

3.11.which

作用:仅查找二进制程序文件

[root@VM_0_9_centos shell_learn]# which mysql/usr/bin/mysql[root@VM_0_9_centos shell_learn]#

3.12.各查找命令总结

 

 

 

转载于:https://www.cnblogs.com/derek1184405959/p/11100469.html

你可能感兴趣的文章
转摘:ashx+jquery-autocomplete文本框输入提示功能Asp.net
查看>>
C#找出第n到m个素数之间所有之和
查看>>
String常用方法简介
查看>>
java 字符串大小比较
查看>>
接收会计事件表和接收会计分录表
查看>>
Prototype源码浅析——Hash部分(一)
查看>>
幼谈苹果新开发语言:Swift和苹果的用心
查看>>
ACM-ICPC国际大学生程序设计竞赛北京赛区(2017)网络赛 A题 Visiting Peking University...
查看>>
剑灵-控制技能图及武器升级图
查看>>
Bean自动装配-XML最小化配置
查看>>
rewrap-ajax.js插件
查看>>
Python之Split函数
查看>>
Linux下使用pip安装keras
查看>>
OpenCv-Python 图像处理基本操作
查看>>
博物院与国宝
查看>>
vmware tools 的安装(Read-only file system 的解决)
查看>>
数列求和总结
查看>>
「Unity」委托 将方法作为参数传递
查看>>
Unity学习疑问记录之隐藏与显示物体
查看>>
设计模式-学习
查看>>