답변:
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 )