79508507

Date: 2025-03-14 08:44:39
Score: 0.5
Natty:
Report link

to sort files by last modification time you can try :

find . -type f -printf "\n%TF-%TT %p" | sort

to sort by reverse order and to remove the prefix you can try :

find . -type f -printf "\n%TF-%TT %p" | sort -r | cut -d " " -f 2

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gilles Gaido