What will be the result if we run the command #find /tmp -mtime -2 and #find /tmp -mtime +2?

Submitted by: Administrator
find /tmp -mtime n where n can be +ve or -ve

+n says, file modified in last n days
-n says, file modified more than n days ago

ex. if today is 5th of a month

file1 has mtime 3rd
file2 has mtime 2nd

then find . -mtime 2 will report file1
then find . -mtime -2 will report file2 only
Submitted by: Administrator

Read Online Unix General Job Interview Questions And Answers