「Linux入門」findコマンドでサイズが大きなファイルを検索する
1.ファイルサイズが500MB以上
# find . -size +100000000c
./tesr.zip
2.ファイルサイズが3000バイト以下
# find . -size -3000c
./todo
./todo/zz
3.ブロックサイズが50以下
find . -size -50
Coding Changes the World
1.ファイルサイズが500MB以上
# find . -size +100000000c
./tesr.zip
2.ファイルサイズが3000バイト以下
# find . -size -3000c
./todo
./todo/zz
3.ブロックサイズが50以下
find . -size -50