Results 1 to 2 of 2

Thread: Find the top 5 big file

  1. #1
    Junior Member
    Join Date
    Jul 2009
    Liked
    0 times
    Posts
    16

    Default Find the top 5 big file

    The following command will display the top 5 largest file in the current directory and it’s subdirectory. This may take a while to execute depending on the total number of files the command has to process.

    # find . -type f -exec ls -s {} \; | sort -n -r | head -5

  2. #2
    Junior Member
    Join Date
    Oct 2009
    Liked
    0 times
    Posts
    52

    Default

    Quote Originally Posted by vasudha View Post
    The following command will display the top 5 largest file in the current directory and it’s subdirectory. This may take a while to execute depending on the total number of files the command has to process.

    # find . -type f -exec ls -s {} \; | sort -n -r | head -5
    great ! have you tried this command?how many seconds that it will recover those files? well i guess i had to try this command to find out myself..thanks..its an added knowledge on my part

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How to Find the Owner of a Website or Domain Name
    By Preeti_20 in forum Web hosting
    Replies: 16
    Last Post: 01-15-12, 10:26 PM
  2. Big TV adding HD
    By Preeti_20 in forum Big TV
    Replies: 26
    Last Post: 12-06-11, 06:56 PM
  3. Top 3 Browsers For Windows
    By imrock in forum Windows
    Replies: 42
    Last Post: 04-22-10, 07:55 AM
  4. How Torrents Works ?
    By talktoanil in forum Computer technology
    Replies: 12
    Last Post: 02-03-10, 01:26 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •