Recursively find and list the last modified files in a directory


/ Published in: Bash
Save to your folder(s)

Recursively find and list the last modified files in a directory


Copy this code and paste it in your HTML
  1. $ stat --printf="%y %n\n" $(ls -tr $(find * -type f))

Report this snippet


Comments


You need to login to view comments.