Problem scenario
Someone was doing a web conference and modified several files. You have forgotten what files she modified. How do you find the files that were modified most recently on a Linux server?
Solution
Run this command:
find $1 -type f -exec stat --format '%Y :%y %n' "{}" \; | sort -nr | cut -d: -f2- | head
# Taken from StackOverflow.com.