Re: using rsync to get filestats

2008-10-18 Thread Matt McCutchen
On Sat, 2008-10-18 at 20:55 -0400, Mag Gam wrote: > Thanks Matt. I suppose I could use rsync to know how big a directory > is then...right? > > rsync --progress -avzL -n /source /foo > > That should give me the total number of bytes to transfer That will work, but --progress seems to be pointles

Re: using rsync to get filestats

2008-10-18 Thread Mag Gam
Thanks Matt. I suppose I could use rsync to know how big a directory is then...right? rsync --progress -avzL -n /source /foo That should give me the total number of bytes to transfer On Wed, Oct 15, 2008 at 3:03 PM, Matt McCutchen <[EMAIL PROTECTED]> wrote: > On Tue, 2008-10-14 at 07:31 -0400, M

Re: using rsync to get filestats

2008-10-15 Thread Matt McCutchen
On Tue, 2008-10-14 at 07:31 -0400, Mag Gam wrote: > Does rsync use stat()? does find use stat() when running with printf? > I think the stat() is the most expensive part. Rsync and "find -printf" both use stat(2). Matt -- Please use reply-all for most replies to avoid omitting the mailing list.

Re: using rsync to get filestats

2008-10-14 Thread Mag Gam
Thanks. Does rsync use stat()? does find use stat() when running with printf? I think the stat() is the most expensive part. On Tue, Oct 14, 2008 at 12:30 AM, Matt McCutchen <[EMAIL PROTECTED]> wrote: > On Tue, 2008-10-14 at 00:28 -0400, Mag Gam wrote: >> Great. Thanks matt. I was using the fin

Re: using rsync to get filestats

2008-10-13 Thread Matt McCutchen
On Tue, 2008-10-14 at 00:28 -0400, Mag Gam wrote: > Great. Thanks matt. I was using the find method, but I want to find a > better way to get my directory sizes. I suppose a find -printf may > work. "find -printf" will give you the sizes of the directories (as lists of entries) themselves. If you

Re: using rsync to get filestats

2008-10-13 Thread Mag Gam
Great. Thanks matt. I was using the find method, but I want to find a better way to get my directory sizes. I suppose a find -printf may work. If anyone else has suggestions please let me know. TIA On Mon, Oct 13, 2008 at 11:57 PM, Matt McCutchen <[EMAIL PROTECTED]> wrote: > On Mon, 2008-10-13 a

Re: using rsync to get filestats

2008-10-13 Thread Matt McCutchen
On Mon, 2008-10-13 at 22:50 -0400, Mag Gam wrote: > Would it be more efficient to use rsync to get filestats instead of > using the 'find' command? I would like to know how big a directory is > on a filesystem, but this directory has millions of small files. I was > wondering if rsync would be more