如何计算目录中超过特定​​文件大小的文件数量

如何计算目录中超过特定​​文件大小的文件数量

有没有办法计算特定目录中有多少文件超过某个文件大小?比如说,100MB?

答案1

也许

find path/to/directory/ -type f -size +100M -printf 1 | wc -c

或者,如果您想将搜索仅限于顶级目录(而不下降到子目录)

find path/to/directory/ -maxdepth 1 -type f -size +100M -printf 1 | wc -c

相关内容