> Not sure if "find" can do it on it's own... but in UNIX, no 
> tool is on it's own!  This will work:
> 
> find . -type f -printf "%s:\t%p\n" | grep "^[456][0-9][0-9][0-9]:"

That will match anything from 4000 to 6999.

But:

find . -type f -printf "%s:\t%p\n" | grep "^[45][0-9][0-9][0-9]:"

will match anything between 4000 and 5999, inclusive, and will miss a 6000.

How would one additionally match the 6000?

-- 
Dave Salovesh
RAM Associates, Inc.
(800) 543-3635

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com

Reply via email to