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 -->
#
5
(
permalink
)
07-03-2007
ramnayakam
Registered User
Join Date: Jun 2007
Posts: 2
Try using the following command,
du -a | sort -n | tail -2 | head -1 | cut -f2
Thanks,
Seetharaman
ramnayakam
View Public Profile
Find all posts by ramnayakam