Is there a shell command to find the newest created files recursively from a root directory?
|
feedback
|
| |||||||
feedback
|
|
This method uses only
You can constrain it to the most recent 3 days, for example, like this:
Or the last 42.5 hours:
which is the same as:
| |||
|
feedback
|
|
To avoid forking one process per file checked, if you're on a machine with GNU versions of find and xargs, consider something like this:
| |||
|
feedback
|