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
Directory
Register
Forum Rules
FAQ
Contribute
Members List
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 -->
#
8
(
permalink
)
05-16-2007
Shell_Life
Registered User
Join Date: Mar 2007
Location: Bahia, Brazil
Posts: 695
Code:
find . -type f -exec du {} \; | sort -nr | head -50
Shell_Life
View Public Profile
Find all posts by Shell_Life