% find . -size 1234c -print
To search for files using a range of file sizes, a minus or plus sign
can be specified before the number. The minus sign
(-) means less than, and the plus sign
(+) means greater than. This next example lists
all files that are greater than 10,000 bytes, but less than 32,000
bytes:
% find . -size +10000c -size -32000c -print
When more than one qualifier is given, both must be true.
-- BB
 |  |  |
9.13. Searching for Files by Type |  | 9.15. Searching for Files by Permission |