find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
find . -type f -mmin -1
find . -type f -atime -5 -exec ls -ltu {} \;
find . -type f -printf '%T@ %p\n' | sort -n | tail -10
The command will return an elongated UNIX timestamp for each file. You can see the human readable time the file was last modified by running the following command:
date -r "<ABSOLUTE PATH OF FILE>"
find . -type f -print0 | xargs -0 stat -f "%m %N" | sort -rn | head -10
The command will return a UNIX timestamp for each file. It can be converted to human readable time by using the following command:
date -r <UNIXTIMESTAMP>