asides-129
· #asides
To find the ten latest files in the current folder and all subfolders while handling whitespace in names gracefully: find . -type f -print0 | xargs -0 ls -lt | head -10
· #asides
To find the ten latest files in the current folder and all subfolders while handling whitespace in names gracefully: find . -type f -print0 | xargs -0 ls -lt | head -10