Linux

如何計算目錄中超過特定文件大小的文件數

  • July 13, 2019

有沒有辦法計算特定目錄中有多少文件超過了某個文件大小?比如說,100 MB?

也許

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

引用自:https://unix.stackexchange.com/questions/529923