du: 폴더에 있는 파일의 크기와 개수를 얻는 방법

du: 폴더에 있는 파일의 크기와 개수를 얻는 방법

나는 du파일 크기를 얻는 데 사용합니다

각 폴더 내의 파일 및 폴더 수를 표시하는 옵션이 있습니까?

예:

여기에는 somefolder5000개의 파일과 10개의 폴더가 있습니다.

~$   du -ah --max-depth=0 /home/ubuntu/somefolder
515G    /home/ubuntu/somefolder  [show number of files count also]

답변1

find다음 명령을 사용할 수 있습니다.

find . -type f | wc -l

관련 정보