From: Xifer <ark@im.net>
Newsgroups: comp.databases.oracle.server
Subject: Re: Autoextend - where in the data dictionary ?
Date: Fri, 02 Feb 2001 13:08:53 +0000
Message-ID: <3A7AB165.A67523D@im.net>
References: <980506701.26675.0.nnrp-12.c2de6f3d@news.demon.co.uk> <csfc6.505$%o.204404@nnrp2.sbc.net> <980518525.4967.0.nnrp-10.c2de6f3d@news.demon.co.uk> <3%Fc6.16$Pn.4923@nnrp1.sbc.net> <MPG.14e0f979b609165b9896a2@news.supernews.com> <3a780f14.14761991@news-server> <MPG.14e245d43ad61efa9896a3@news.supernews.com>
NNTP-Posting-Host: [194.217.118.116]
X-NNTP-Posting-Host: [194.217.118.116]:194.217.118.116
X-Trace: news.demon.co.uk 981119079 nnrp-02:6446 NO-IDENT [194.217.118.116]:194.217.118.116
X-Complaints-To: abuse@demon.net
X-Mailer: Mozilla 4.75 [en] (WinNT; U)
X-Accept-Language: en
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Lines: 26


Liz Reen wrote:
> 
> In article <3a780f14.14761991@news-server>,
> nsouto@nsw.bigpond.net.au.nospam says...
> > On Tue, 30 Jan 2001 16:17:54 -0500, Liz Reen <lizr@geologist.com>
> > wrote:
> >
> > >Another good one is df -k | sort -n -r | more  This will give you the
> > >largest files first.
> > >
> >
> > Try :
> > df -k | sort -n -r|awk '{print $6,$2,$3,$4}'|more
> >
> > easier to read...  ;-)
> True True, but a lot harder to remember and type.
> 
> Liz

Also it has nothing to do with reporting file sizes
which is the issue.  df reports file systems not files.

du -k [directory|.]|sort -nk 1 


is what is required.

