Re: [gentoo-user] Record sizes of directories of a directory tree (huge) most efficiently

2016-02-03 Thread Frank Steinmetzger
On Tue, Feb 02, 2016 at 07:03:07PM -0600, Dale wrote: > >> I want to determine the size of the contents of all directories of a > >> tree of directories on a hexacore AMD64 machine with 4GB RAM an one > >> harddisk (containing that tree) -- most efficiently (least time > >> consuming). > > A bit

Re: [gentoo-user] Record sizes of directories of a directory tree (huge) most efficiently

2016-02-02 Thread Frank Steinmetzger
On Wed, Jan 27, 2016 at 05:25:37PM +0100, meino.cra...@gmx.de wrote: > Hi, > > I want to determine the size of the contents of all directories of a > tree of directories on a hexacore AMD64 machine with 4GB RAM an one > harddisk (containing that tree) -- most efficiently (least time > consuming).

Re: [gentoo-user] Record sizes of directories of a directory tree (huge) most efficiently

2016-02-02 Thread Dale
Frank Steinmetzger wrote: > On Wed, Jan 27, 2016 at 05:25:37PM +0100, meino.cra...@gmx.de wrote: >> Hi, >> >> I want to determine the size of the contents of all directories of a >> tree of directories on a hexacore AMD64 machine with 4GB RAM an one >> harddisk (containing that tree) -- most

Re: [gentoo-user] Record sizes of directories of a directory tree (huge) most efficiently

2016-01-27 Thread Dutch Ingraham
On Wed, Jan 27, 2016 at 04:28:43PM -0400, David M. Fellows wrote: > On Wed, 27 Jan 2016 17:25:37 +0100 > meino.cra...@gmx.de wrote - > > Hi, > > > > I want to determine the size of the contents of all directories of a > > tree of directories on a hexacore AMD64 machine with 4GB RAM an one > >

[gentoo-user] Record sizes of directories of a directory tree (huge) most efficiently

2016-01-27 Thread Meino . Cramer
Hi, I want to determine the size of the contents of all directories of a tree of directories on a hexacore AMD64 machine with 4GB RAM an one harddisk (containing that tree) -- most efficiently (least time consuming). I tried this (cwd = root of that tree): find . -depth -type d -print0 |

Re: [gentoo-user] Record sizes of directories of a directory tree (huge) most efficiently

2016-01-27 Thread David M. Fellows
On Wed, 27 Jan 2016 17:25:37 +0100 meino.cra...@gmx.de wrote - > Hi, > > I want to determine the size of the contents of all directories of a > tree of directories on a hexacore AMD64 machine with 4GB RAM an one > harddisk (containing that tree) -- most efficiently (least time > consuming). > >

Re: [gentoo-user] Record sizes of directories of a directory tree (huge) most efficiently

2016-01-27 Thread Daniel Frey
On 01/27/2016 08:25 AM, meino.cra...@gmx.de wrote: > Hi, > > I want to determine the size of the contents of all directories of a > tree of directories on a hexacore AMD64 machine with 4GB RAM an one > harddisk (containing that tree) -- most efficiently (least time > consuming). > > I tried this