Find Large Files

2008-02-26 Thread Chris
I'm trying to locate large files on my internal memory (cleaning house). find / -type f -size +10240k I keep getting find: invalid number +10240k What am I doing wrong? Is there another way? Tx Chris ___ maemo-users mailing list maemo-users@maemo.org

Re: Find Large Files

2008-02-26 Thread Kevin T. Neely
On Tue, Feb 26, 2008 at 03:15:11PM -0500, Chris wrote: I'm trying to locate large files on my internal memory (cleaning house). find / -type f -size +10240k I keep getting find: invalid number +10240k How about du? I use something like du -h --max-depth=2 to get a quick overview of my

Re: Find Large Files

2008-02-26 Thread Chris
Nokia-N800-50-2:/# du -h --max-depth=2 du: unrecognized option `--max-depth=2' Doesn't like the option maxdepth Chris On Tue, Feb 26, 2008 at 3:38 PM, Kevin T. Neely [EMAIL PROTECTED] wrote: On Tue, Feb 26, 2008 at 03:15:11PM -0500, Chris wrote: I'm trying to locate large files on my

Re: Find Large Files

2008-02-26 Thread n810
In the message dated: Tue, 26 Feb 2008 15:38:40 EST, The pithy ruminations from Kevin T. Neely on Re: Find Large Files were: = = = On Tue, Feb 26, 2008 at 03:15:11PM -0500, Chris wrote: = I'm trying to locate large files on my internal memory (cleaning house). = = find / -type f -size

Re: Find Large Files

2008-02-26 Thread Michael Thompson
On 26/02/2008, Chris [EMAIL PROTECTED] wrote: I'm trying to locate large files on my internal memory (cleaning house). find / -type f -size +10240k I keep getting find: invalid number +10240k linked too busybox find / -size 1000 seems to work ___

Re: Find Large Files

2008-02-26 Thread Chris
That only finds files exactly 1000 (-size 1000) On Tue, Feb 26, 2008 at 6:33 PM, Michael Thompson [EMAIL PROTECTED] wrote: On 26/02/2008, Chris [EMAIL PROTECTED] wrote: I'm trying to locate large files on my internal memory (cleaning house). find / -type f -size +10240k I keep getting