diff --git a/README.md b/README.md index 6035ab9..224334d 100644 --- a/README.md +++ b/README.md @@ -658,6 +658,12 @@ find . -depth -type d -empty -exec rmdir {} \; find -xdev -samefile filename ``` +###### Recursively find the latest modified files + +```bash +find . -type f -exec stat --format '%Y :%y %n' "{}" \; | sort -nr | cut -d: -f2- | head +``` + ___ ##### Tool: [top](https://en.wikipedia.org/wiki/Top_(software))