Linux教程

linux find查找文件/目录

本文主要是介绍linux find查找文件/目录,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

查找当前目录下某个文件

find . –name  [filename]

-i  不区分大小写

find . –iname [filename]

-type 按类型进行查找,d查找目录,f查找文件

find . –type d –name [document]

find . type f –name [filename]

-user 按所有者查找文件/目录

find . –user  [username]

find . –user root

-group 按用户组查找文件/目录

find . –group  [groupname]

find . –group root

其他的查询

find . –type f –mtime 1   查找1天前修改的文件

find . –type f –cmin -60 查找1小时内更改过的文件

find . –type  f –size +50MB –size -100MB 查找50MB到100MB的所有文件

 

 

转载:https://www.cnblogs.com/JcHome/p/10852949.html

这篇关于linux find查找文件/目录的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!