Skip to content

Instantly share code, notes, and snippets.

@technomaz
Created December 7, 2018 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save technomaz/e17eed244c1d096df9270dd8a105a903 to your computer and use it in GitHub Desktop.
Save technomaz/e17eed244c1d096df9270dd8a105a903 to your computer and use it in GitHub Desktop.
Run this from a linux command line to list all the files in subfolders ordered by date. Add an "r" to the sort -n command to place the newest files at the top of the result set. Based on code from https://hamwaves.com/find/en/index.html
find . -type f -not -path '*/\.*' -printf '%TY.%Tm.%Td %THh%TM %Ta %p\n' |sort -n|less
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment