The UNIX and Linux Forums
>
Top Forums
>
Shell Programming and Scripting
find largest file
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 largest file
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
2
(
permalink
)
07-02-2007
lorcan
Registered User
Join Date: May 2007
Posts: 217
This will bring the largest file in the directory. But if the directory has the maximum size then it would list the directory rather than the files.
Code:
du -ms * | sort | tail -1
lorcan
View Public Profile
Find all posts by lorcan