Kamil Choudhury

#define ZERO -1 // oh no it's technology all the way down

Find Recently Modified Files

Here's a quick snippet to find files that have been recently modified on a computer:

find / -type f -printf '%TY-%Tm-%Td %TT %p\n' | sort -r

Useful when you've made a fleet of changes to a machine and are trying to remember what you changed.