This tip will show you a command that will help you find the recently modified files on your system via the Terminal. The command is tested on Ubuntu, but you can run it on other Linux-based distributions.
Via the Terminal, run this command:
find . -type f -printf '%TY-%Tm-%Td %TT %p\n' | sort
All recently modified files will be sorted and displayed from newest to oldest.
That's it!
Post a Comment