On Thursday 04 July 2002 12:29 pm, Philip S Tellis wrote:
> ls -sH | grep "^[0-9.]*M" | sort -nr
>
> that will get you stuff that's of the order of Megabytes.  Tweak around
> with the grep for finer results.  I could probably figure it out if I
> had more of an incentive ;)

What is wrong with find(1)??

find /var/spool/mail -type f -a -size +10240k

This will print the names of all files in /var/spool/mail that exceeds 10MB.
One program spawned instead of three ;-)

Binand


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Caffeinated soap. No kidding.
http://thinkgeek.com/sf
_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/linux-india-help

Reply via email to