特定のディレクトリにある特定のファイルサイズを超えるファイル数を数える方法はありますか?たとえば、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