Main menu:

Site search

Categories

Archive

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 {} \;

Write a comment