asides-129

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