Re: How to search for file with size >= a given size?

2020-05-10 Thread Peng Yu
It seems that +1 includes 1 block. Is it so? If it is the case, then it is not consistent with +1c which does not include 1c? Thanks. On 5/10/20, Andreas Metzler wrote: > On 2020-05-10 Peng Yu wrote: >> Hi, > >> I only see find's --size support + and - which means > or <. Is there >> a way to s

Re: How to search for file with size >= a given size?

2020-05-10 Thread Weatherby,Gerard
Use the or function. To find a file >= 446 bytes: find . \( -size 446c -o -size +446c \) -- Gerard Weatherby | Application Architect NMRbox | Department of Molecular Biology and Biophysics | UConn Health 263 Farmington Avenue, Farmington, CT 06030-6406 Phone: 860 679 8484 uchc.edu

Re: How to search for file with size >= a given size?

2020-05-10 Thread Andreas Metzler
On 2020-05-10 Peng Yu wrote: > Hi, > I only see find's --size support + and - which means > or <. Is there > a way to search for >= or <=? Thanks. There is a generic -not. - "not >" == "<=" cu Andreas -- `What a good friend you are to him, Dr. Maturin. His other friends are so grateful to you.

How to search for file with size >= a given size?

2020-05-10 Thread Peng Yu
Hi, I only see find's --size support + and - which means > or <. Is there a way to search for >= or <=? Thanks. -- Regards, Peng