有没有办法计算特定目录中有多少文件超过某个文件大小?比如说,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
有没有办法计算特定目录中有多少文件超过某个文件大小?比如说,100MB?
也许
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