Find recently changed files
I'm using Ubuntu as my daily driver these days, and while I love it, I really miss some of the built-in features of Windows such as recently used files.
For example, what Git repos have I pulled or worked in recently?
A little Linux-Fu solves this problem quite easily! Here's how:
find . -name '*.git' -mtime -7
This little gem will find all git repos in all sub-directories below the current directory that have changed within the past 7 days.
Enjoy!