linux – 如何在子目录中找到最大的文件?

linux – 如何在子目录中找到最大的文件?,第1张

概述参见英文答案 > Bash – How to find the largest file in a directory and its subdirectories?                                    15个 通过以下命令,我可以找到最大的目录. find <directory> -printf '%s %p\n' |sort -nr | head 但有没有办法 参见英文答案 > Bash – How to find the largest file in a directory and its subdirectories?                                    15个
通过以下命令,我可以找到最大的目录.

find <directory> -printf '%s %p\n' |sort -nr | head

但有没有办法在目录中的所有子目录中找到最大的文件

解决方法 为文件指定-type f:

find -type f -printf '%s %p\n' |sort -nr | head
总结

以上是内存溢出为你收集整理的linux – 如何在子目录中找到最大的文件?全部内容,希望文章能够帮你解决linux – 如何在子目录中找到最大的文件?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1028247.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存