回答:
つかいます:
find . -type f -size +4096c
4096バイトを超えるファイルを検索します。
そして:
find . -type f -size -4096c
4096バイト未満のファイルを検索します。
サイズの切り替え後の+と-の違いに注意してください。
-size
スイッチは説明しました:
-size n[cwbkMG]
File uses n units of space. The following suffixes can be used:
`b' for 512-byte blocks (this is the default if no suffix is
used)
`c' for bytes
`w' for two-byte words
`k' for Kilobytes (units of 1024 bytes)
`M' for Megabytes (units of 1048576 bytes)
`G' for Gigabytes (units of 1073741824 bytes)
The size does not count indirect blocks, but it does count
blocks in sparse files that are not actually allocated. Bear in
mind that the `%k' and `%b' format specifiers of -printf handle
sparse files differently. The `b' suffix always denotes
512-byte blocks and never 1 Kilobyte blocks, which is different
to the behaviour of -ls.
find
AWKにパイプすることなく、単独で役立つと思います。例えば、
find ~ -type f -size +2k -exec ls -sh {} \;
チルダは、検索を開始する場所を示し、結果には2キロバイトを超えるファイルのみが表示されます。
おしゃれにするには、-exec
オプションを使用して別のコマンドを実行し、これらのディレクトリのサイズを一覧表示します。
詳細については、のmanページをご覧くださいfind
。
AWKは、この種のものにとっては本当に簡単です。あなたが尋ねたように、ファイルサイズのチェックに関連してあなたがそれでできることがいくつかあります:
200バイトを超えるファイルを一覧表示する:
ls -l | awk '{if ($5 > 200) print $8}'
200バイト未満のファイルをリストし、リストをファイルに書き込みます。
ls -l | awk '{if ($5 < 200) print $8}' | tee -a filelog
0バイトのファイルをリストし、リストをファイルに記録し、空のファイルを削除します。
ls -l | awk '{if ($5 == 0) print $8}' | tee -a deletelog | xargs rm
tee
ような、ファイルへのパイピングとファイルへのリダイレクトの違いは何ですか?ls -l > filelog
ls -l >> filelog