The UNIX and Linux Forums
>
Special Forums
>
Filesystems, Disks and Memory
find the 5o largest files in a directory
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Rules & FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
find the 5o largest files in a directory
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
4
(
permalink
)
05-16-2007
Shell_Life
Unix/Informix/4GL/SQL
Join Date: Mar 2007
Location: Bahia, Brazil
Posts: 695
igidttam,
See if this works for you:
Code:
du -a | sort -nr | head -50
Shell_Life
View Public Profile
Find all posts by Shell_Life