linux 查找大小大于
I have many files under a directory. How to find those files under the directory that are larger than certain size, say 500MB?
我的目录下有很多文件 。 如何在目录下找到大于特定大小(例如500MB)的文件?
Find the files that are larger than 500MB in the current directory (./
):
在当前目录( ./
)中查找大于500MB的文件:
find ./ -size +500M
Prints our more information about these files:
打印有关这些文件的更多信息 :
find ./ -size +500M -exec ls -lh {} ;
Or, more conveniently, sort these results by file sizes:
或者,更方便地,按文件大小对这些结果进行排序:
(find ./ -size +100M -exec ls -lh {} ;) | sort -rh
Answered by Eric Z Ma. 埃里克·马(Eric Z Ma)回答。
very good answer. Thank you
很好的答案。 谢谢
翻译自: https://www.systutorials.com/how-to-find-files-in-a-directory-that-are-larger-than-certain-size/
linux 查找大小大于