it seems that ls doesn't sort the files correctly, when doing a recursive call:

ls -altR . | head -n 3

how can i find the latest modified file in a directory (including subdirectories)?

see you,

link|improve this question

feedback

4 Answers

up vote 14 down vote accepted
find . -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "

For a huge tree, it might be hard for sort to keep everything in memory.

%T@ gives you the modification time like a unix timestamp, sort -n sorts numerically, tail -1 takes the last line (highest timestamp), cut -f2 -d" " cuts away the first field (the timestamp) from the output.

Edit: Just as -printf is probably GNU-only, ajreals usage of stat -c is too. Although it is possible to do the same on BSD, the options for formatting is different (-f "%m %N" it would seem)

And I missed the part of plural; if you want more then the latest file, just bump up the tail argument.

link|improve this answer
1  
stat -c is way too slow – ajreal Dec 30 '10 at 11:12
added the Mac and BSD version as an answer based on this, for those not too familiar with find – Emerson Farrugia Jan 29 at 11:37
feedback

Instead of sorting the results and keeping only the last modified ones, you could use awk to print only the one with greatest modification time (in unix time):

find . -type f -printf "%T@\0%p\0" | awk '
    {
        if ($0>max) {
            max=$0; 
            getline mostrecent
        } else 
            getline
    } 
    END{print mostrecent}' RS='\0'

This should be a faster way to solve your problem if the number of files is big enough.

I have used the NUL character (i.e. '\0') because, theoretically, a filename may contain any character (including space and newline) but that.

link|improve this answer
This could be easily adapted to keep the three most recent. – Dennis Williamson Dec 30 '10 at 12:08
feedback

following up on @plundra's answer, here's the BSD and Mac version...

find . -type f -exec stat -f "%m %N" {} \; | sort -n | tail -1 | cut -f2- -d" "

link|improve this answer
feedback

This gives a sorted list:

find . -type f -ls 2>/dev/null | sort -M -k8,10 | head -n5

Reverse the order by placing a '-r' in the sort command. Of you only want filenames, insert "awk '{print $11}' |" before '| head'

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.