Answers:
如果您希望查看所有超过100M的文件,并查看它们的位置和大小,请尝试以下操作:
find . -type f -size +100M -exec ls -lh {} \;
-printf "%p %s"
。参见:unixhelp.ed.ac.uk/CGI/man-cgi?find
-printf '%9s %p\n'
对我来说很好
使用以下内容:
find / -size gt 2MB
要么:
find / -size => 2000000
find . -type f -size +4096c
(superuser.com/a/204571/111289)