Shell find:查找文件,模糊查询,时间范围查询

可参考:  https://www.cnblogs.com/peida/archive/2012/11/16/2773289.html


 
命令:
find  path  -option  [  -print ]  [ -exec  -ok  command  ]  {}  /;
 
例子:
1.指定文件查询:
gec@ubuntu:/mnt/hgfs/GZ1725/7-sys/shell/code$ 

2.模糊文件查询
gec@ubuntu:/mnt/hgfs/GZ1725/7-sys/shell/code$

3.根据时间范围查询:

#查找/opt目录下2019/1/1 – 2019/9/1之间的文件,并显示详情

find /opt -name ‘jdk*’ -newermt ‘2019-01-01’ ! -newermt ‘2019-09-01’   -type f |  xargs ls -l

-rwxr-xr-x. 1 root root 72087592 3月  14 2019 ./jdk-6u45-linux-x64.bin

-newermt:mt为可选参数【a, c, m, t】,a:atime, 即访问时间。c:ctime,即改变时间,m:mtime,即修改时间,t:ttime,即客观绝对时间,只作为参照属性存在,格式为yyyy-MM-dd hh:mm:ss

-type f :指定是文件,不是目录

-type d: 指定是文件夹


#查找/opt目录下2天以前的文件,并显示详情

find /opt  -ctime  +2 | xargs ls -l

lrwxrwxrwx. 1 root root       17 3月  14 2019 /opt/apr/apr/lib/libapr-1.so -> libapr-1.so.0.5.0

lrwxrwxrwx. 1 root root       17 3月  14 2019 /opt/apr/apr/lib/libapr-1.so.0 -> libapr-1.so.0.5.0

-rwxr-xr-x. 1 root root 72087592 3月  14 2019 /opt/jdk-6u45-linux-x64.bin

原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/182944.html

(0)
上一篇 2021年11月1日
下一篇 2021年11月1日

相关推荐

发表回复

登录后才能评论