首页 > linux命令find命令详解

linux命令find命令详解

find 查找文件

find 哪里 什么类型 什么名字

-maxdepth 最大的深度 查找目录的最大深度    find -maxdepth 1 -type d

-type 找什么类型的

f file 文件

d directory 目录

-name 什么名字

-mtime 根据修改时间找出对应的文件   +7 7天前  -7 7天后

 find命令一般与 |xargs 一起用

 

-size  大小  



-exec 后面跟命令 find /app/logs/ -type f -name "*.log" -exec cp {} /tmp/b/ ;

! 非 取反

cp $(find /app/logs/ -type f -name "*.log") /tmp/a/

find /app/logs/ -type f -name "*.log" |xargs cp -t /tmp/c

转载于:https://www.cnblogs.com/xiaodong0802/p/9966734.html

更多相关: