Here’s the table of contents:

  1. E.g. find html files and sort by date

E.g. find html files and sort by date

Find and sort by date

find . -iname "*.html" -printf "%T@ %Tc %p\n" | sort -n

See!