Skip to content

Instantly share code, notes, and snippets.

@0xTowel
Created October 9, 2019 06:42
Show Gist options
  • Save 0xTowel/3695e28cf66c4241ed0e9d58e65a6cb5 to your computer and use it in GitHub Desktop.
Save 0xTowel/3695e28cf66c4241ed0e9d58e65a6cb5 to your computer and use it in GitHub Desktop.
List last touched files
# https://www.reddit.com/r/netsec/comments/biu9kc/moddetective_small_python_tool_that_analyzes_the/em3siw8
find / -type f -exec stat --format '%Y :%y %n' "{}" \; | sort -nr | cut -d: -f2- | head
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment