Re: du man page

2020-10-21 Thread Greg Thomas
had is rad. On Wed, Oct 21, 2020 at 10:09 AM Ingo Schwarze wrote: > Hi, > > a...@sdf.org wrote on Wed, Oct 21, 2020 at 11:44:01AM +: > > > In du(1) it reads: > > > > [...] > > EXAMPLES > > Display a summary of files and folders in the current directory, > > sorted by size: > > > >

Re: du man page

2020-10-21 Thread Ingo Schwarze
Hi, a...@sdf.org wrote on Wed, Oct 21, 2020 at 11:44:01AM +: > In du(1) it reads: > > [...] > EXAMPLES > Display a summary of files and folders in the current directory, > sorted by size: > >$ du -sh * .??* | sort -h > [...] > > This misses file names of the form .a,

du man page

2020-10-21 Thread adr
Hello, In du(1) it reads: [...] EXAMPLES Display a summary of files and folders in the current directory, sorted by size: $ du -sh * .??* | sort -h [...] This misses file names of the form .a, .1, etc. Better use something like $ du -ahd1 . | sort -h Where is the best pla