如何找到子目录中最大的文件?
使用以下命令我可以找到最大的目录。
find <directory> -printf '%s %p\n' |sort -nr | head
但是有没有办法找到目录中所有子目录中最大的文件?
Wit the following command I can find largest directory.
find <directory> -printf '%s %p\n' |sort -nr | head
But is there a way to find largest file within all the subdirectories in directory ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为文件指定
-type f
:Specify
-type f
for file:使用您刚刚给出的命令,您将获得最大的文件。如果您想递归地汇总目录中每个文件的大小,您可能需要使用“du”命令。
With the command you just gave, you get the largest file. If you want to summarize the size for each file recursively for directories you may want to use the `du' command.