How would you find the .org
(or .pdf
, .doc
, …) file you created the most
recently?
find . -type f -iname \*.org -printf "\n%AF %AT %p" | sort -r | head
If you’ve installed the GNU findutils
on MacOS from Homebrew you might need to
use gfind
.