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.

源泉

マニュアルページ

おすすめ記事