If the desire is literally the largest file in all the sub directories, just use

ls -lR | sort +3

-W


At 10:49 AM 2/10/2001, Moritz Schulte wrote:
angus debian <[EMAIL PROTECTED]> writes:

>   I would like to list the files by size include all
>   sub-directory.

Uhm, it's a quite ugly hack, because I'm not familiar with sed/awk,
but this seems to work:

find . -type f | xargs ls -lk | awk '{ print $5 "\t" $0 }' \
| sort -nr | sed -e 's/^[0-9]*\W*//;' | less

        hth,
        moritz
--
Moritz Schulte <[EMAIL PROTECTED]> http://www.chaosdorf.de/moritz/
Debian/GNU supporter - http://www.debian.org/ http://www.gnu.org/
GPG fingerprint = 3A14 3923 15BE FD57 FC06  B501 0841 2D7B 6F98 4199


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


--
Come see The Wolf Den - http://www.thewolfden.org

Reply via email to