Skip to content

Instantly share code, notes, and snippets.

@zwacky
Created September 28, 2020 09:48
Show Gist options
  • Save zwacky/c130ee7ef8e7ddcd16befdd3a6af82d2 to your computer and use it in GitHub Desktop.
Save zwacky/c130ee7ef8e7ddcd16befdd3a6af82d2 to your computer and use it in GitHub Desktop.
Find the last modified files recursively in a folder
find . -type f -exec stat -f "%m %N" "{}" \; | sort -nr | head
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment