Unix General Question: Download Unix General PDF

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

Tweet Share WhatsApp

Answer:

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

Download Unix General PDF Read All 18 Unix General Questions
Previous QuestionNext Question
Suppose i have one column with data smith
john
michale
the o/p should be smith,john, michale how we do in unix?
What is the difference between NFS 3 and NFS 4? What are new features added in NFS4?