Linux命令学习之find

编程

# //当前路径下递归查找以.txt结尾的文件夹

find . -name “*.txt”

2、不递归查找

find . -name “*.txt” -maxdepth 1

3、查找特定目录下的文件或者查找目录

find dir -type f

find dir -type d

4、避开特定目录的用法prune

find /home/student -path /home/student/sep -prune -o -name "tmp.txt" -print

-path 匹配路径 -prune : 匹配特定路径后从find的结果中减掉

-o : 链接两个条件的,如果前面的成立,就不执行后面的,类似lua里的or

参考

https://blog.csdn.net/imfinger/article/details/6371601

https://www.cnblogs.com/hubavyn/p/5452039.html

以上是 Linux命令学习之find 的全部内容, 来源链接: utcz.com/z/513257.html

回到顶部