博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
find 命令一个命令多参数如何使用,????,perm
阅读量:5993 次
发布时间:2019-06-20

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

[root@ob2 mytmp]# find -mtime -7 -type f \( -name "*.html" -o -name "*.tar.gz" \)./02.html./03.html./tp_2017-09-143516.tar.gz./01.html

[root@ob2 mytmp]# find -mtime -7 -type f \( -name "*.html" -o -name "*.tar.gz" \)

./02.html
./03.html
./tp_2017-09-143516.tar.gz
./01.html

括号和代码间有空格

[root@ob2 mytmp]# find -mtime -7 -type f \( -name "*.html" -o -name "*.tar.gz" \)

./02.html
./03.html
./tp_2017-09-143516.tar.gz
./01.html
[root@ob2 mytmp]# find -mtime +7 -type f    \(      -name "*.html" -o -name "*.tar.gz"      \)
./aa.html

===================================下面写法逻辑显示不对

 

[root@ob2 mytmp]# find -type f -name "*.html" -o -name "*.tar.gz" -mtime +7

./02.html
./aa.html
./03.html
./01.html
[root@ob2 mytmp]# find -type f -name "*.html" -o -name "*.tar.gz" -mtime -7
./02.html
./aa.html
./03.html
./tp_2017-09-143516.tar.gz
./01.html

 

转载于:https://www.cnblogs.com/gaoyuechen/p/7521717.html

你可能感兴趣的文章
Ubuntu菜鸟入门(十六)—— 安装视频播放器vlc
查看>>
Converting Recursive Traversal to Iterator
查看>>
很酷的let clause的应用
查看>>
SQLServer2000删除重复数据
查看>>
Installing NFS on CentOS 6.2
查看>>
【玩转Ubuntu】08. Linux报错:Syntax error: "(" unexpected解决办法
查看>>
Python和C|C++的混编(一):Python调用C、C++---Boost库
查看>>
virtual ,abstract,override 用法
查看>>
linux下怎么退出telnet
查看>>
关注细节但不陷入细节
查看>>
Hadoop学习笔记—19.Flume框架学习
查看>>
Deep Learning(深度学习)学习笔记整理系列之(三)
查看>>
飞天开放平台编程指南——阿里云计算的实践
查看>>
卓越领导者:从优秀经理人迈向卓越领导者的登峰之道
查看>>
HDU 4415 Assassin’s Creed(贪心)
查看>>
HDU 4549 M斐波那契数列(矩阵幂)
查看>>
欧拉函数学习小记
查看>>
git stash
查看>>
csharp: Getting all image files in folder
查看>>
get与post请求简单理解
查看>>