Advertisement
mindthump

Recursive file list by modification date

Feb 22nd, 2021 (edited)
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.11 KB | None | 0 0
  1. find . -printf '%T@ %t %p\n' | sort -k 1 -n | cut -d' ' -f2-
  2.  
  3. # Use the epoch time to sort then lop it off
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement