sh 每个子目录中的文件数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 每个子目录中的文件数相关的知识,希望对你有一定的参考价值。

# Count of files in each sub-directory
find . -maxdepth 1 -mindepth 1 -type d -exec sh -c 'echo "$(find "{}" -type f | wc -l)" {}' \; | sort -nr

## Output example
# 1128 ./wordpress-seo
# 676 ./wp-ses
# 618 ./css-javascript-toolbox
# 423 ./gravityforms
# 394 ./wp-usertrack

以上是关于sh 每个子目录中的文件数的主要内容,如果未能解决你的问题,请参考以下文章

如何计算每个目录中的文件数?

计算不同子目录中的文件数

查找目录中的文件数

如何使用 Python 计算目录中的文件数

计算目录/子目录中的文件数

计算Linux目录中的文件数? [关闭]