Go Back   Linux Forums by TotalPenguin! Get linux Help! > Linux > Linux General

Linux General Any questions that are not covered by other forums go here.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-23-2007, 07:38 PM
ptt3
Guest
 
Posts: n/a
Default Howto: Find the largest directory/file in a directory

I needed to do this earlier and just learned so I thought I would share:

# du -ha /var | sort -n -r | head -n 10

-a : Include all files, not just directories (du command)
-h : Human readable format, display data in 1K, 2G (du command)
-n : Numeric sort (sort command)
-r : Reverse the result of comparisons (sort command)
-n 10 : Display 10 largest file. If you want 20 largest file replace 10 with 20. (head command)
Reply With Quote

Sponsored Links
  #2 (permalink)  
Old 01-23-2007, 08:31 PM
Jame
Guest
 
Posts: n/a
Default

This little command always comes in handy when I need to know where my space is gone. Glad to see others are using it as well.
Reply With Quote
  #3 (permalink)  
Old 05-28-2007, 02:02 AM
Senior Member
 
Join Date: Jan 2007
Posts: 109
Hektor is on a distinguished road
Default

This will come in handy, thanks for the post!
Reply With Quote
  #4 (permalink)  
Old 05-28-2007, 09:38 PM
Jordan's Avatar
Administrator
 
Join Date: Nov 2006
Posts: 570
Jordan is on a distinguished road
Default

Thanks for the post!
Reply With Quote
  #5 (permalink)  
Old 05-28-2007, 10:08 PM
ptt3
Guest
 
Posts: n/a
Default

No problem, if I find anything else I'll let you know.
Reply With Quote

Sponsored Links
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
ell Ubuntu to Fix File System Errors Automatically at Boot Onur Linux General 0 08-27-2007 02:12 AM
tar entire directory Prog Linux General 3 07-20-2007 06:37 PM
Directory index forbidden by rule Wanch Linux Networking 1 06-22-2007 11:23 PM
Move an entire directory C3P0 Linux General 1 03-22-2007 05:55 PM


All times are GMT. The time now is 04:02 AM.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.