Contents
examples:
- find ./ -size -500k
- find ./ -size +500k -exec mv {} ./backup \;
” – “は指定容量以下のを示し、” + “は指定容量以上示します。
comment:
- size指定は以下のものが使用可能
- b:512-byte blocks (default)
- c:bytes
- w:two-byte words
- k:Kilobytes (units of 1024 bytes)
- M:Megabytes (units of 1048576 bytes)
- G:Gigabytes (units of 1073741824 bytes)