ncdu를 사용하여 현재 폴더(하위 폴더의 파일 제외)에 포함된 파일 수를 보는 방법은 무엇입니까?

ncdu를 사용하여 현재 폴더(하위 폴더의 파일 제외)에 포함된 파일 수를 보는 방법은 무엇입니까?

나는 사용한다NCDU일부 폴더를 찾아보세요. 현재 폴더에 포함될 파일 수(하위 폴더의 파일 제외)를 어떻게 확인할 수 있나요?


기본적으로 ncdu에서 현재 폴더에 포함된 파일 수에는 하위 폴더에 있는 파일이 포함됩니다.

여기에 이미지 설명을 입력하세요.

다른 명령어도 알아요예를 들어(작가:마야 피코카):

 find . -maxdepth 1 -type f | wc -l

ncdu하지만 그것이 가능한지 알고 싶습니다 .

답변1

ncdu <pathToScan> --exclude=<excludeDirA> --exclude=<excludeDirB> --exclude=<excludeDirC>

예:sudo ncdu / --exclude=/dev --exclude=/Applications

더 많은 옵션을 보려면 ncdu스캔한 문서는 다음과 같습니다.

 Scan Options

These options affect the scanning progress, and have no effect when 
importing directory information from a file.


-x  Do not cross filesystem boundaries, i.e. only count files and directories on the same filesystem as the
           directory being scanned.

   --exclude PATTERN
       Exclude files that match PATTERN. The files will still be displayed by default, but are not counted
       towards the disk usage statistics. This argument can be added multiple times to add more patterns.

   -X FILE, --exclude-from FILE
       Exclude files that match any pattern in FILE. Patterns should be separated by a newline.

   --exclude-caches
       Exclude directories containing CACHEDIR.TAG.  The directories will still be displayed, but not their
       content, and they are not counted towards the disk usage statistics.  See
       http://www.brynosaurus.com/cachedir/

   -L, --follow-symlinks
       Follow symlinks and count the size of the file they point to. As of ncdu 1.14, this option will not follow
       symlinks to directories and will count each symlinked file as a unique file (i.e. unlike how hard links
       are handled). This is subject to change in later versions.

원천

매뉴얼 페이지

관련 정보