Skip to main content
1 of 3
UnX
  • 861
  • 5
  • 8

This one will list all files in <dir> with topmost being oldest modified

find <dir> -type f | xargs ls -l 

And with this the latest modified is topmost

find <dir> -type f | xargs ls -lt 
UnX
  • 861
  • 5
  • 8