Created
October 9, 2019 06:42
-
-
Save 0xTowel/3695e28cf66c4241ed0e9d58e65a6cb5 to your computer and use it in GitHub Desktop.
List last touched files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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