1
edit
Changes
no edit summary
'''8. How can I get the lasts modified files in the system using find command ?'''
* find /etc -mmin 2 --> This will let u see all files in /etc that were modified in last 2 minutes.
* find /etc -cmin 2 --> This will let u see all files in /etc that were changed in last 2 minutes.