How to find reciently changed files
Looking to see what has changed on your linux server lately? This command will find files changed in the last 10 days
find ./ -type f -mtime -10 -exec ls -al {} \;
Posted: January 20th, 2008 under Linux.
Comments: none
Write a comment