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,
|
it seems that ls doesn't sort the files correctly, when doing a recursive call:
how can i find the latest modified file in a directory (including subdirectories)? see you,
| |||
|
feedback
|
For a huge tree, it might be hard for
Edit: Just as And I missed the part of plural; if you want more then the latest file, just bump up the tail argument. | |||||||
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):
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. | |||
|
feedback
|
|
following up on @plundra's answer, here's the BSD and Mac version...
| |||
|
feedback
|
|
This gives a sorted list:
Reverse the order by placing a '-r' in the sort command. Of you only want filenames, insert "awk '{print $11}' |" before '| head' | |||
|
feedback
|