Using find to find and sort files by date Mar 18, 2021 Here’s the table of contents: 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!