The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 07-02-2007
lorcan lorcan is offline
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
Reply With Quote