What will be the result if we run the command #find /tmp -
mtime -2 and #find /tmp -mtime +2
Answers were Sorted based on User's Feedback
Answer / sanjeev
find /tmp - mtime -2-----will display file modified in last
two days
find /tmp -mtime +2-----will display file modified in more
than two days
Is This Answer Correct ? | 13 Yes | 0 No |
Answer / kuvaibhav
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
Is This Answer Correct ? | 10 Yes | 4 No |
Answer / supriya
#find /tmp -mtime -2 displays the file modified in the last
two days.
#find /tmp -mtime +2 displays the file modified in more
than two days.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / manikandan
find /tmp -mtime +2-----will display file modified in more
than three days
Is This Answer Correct ? | 0 Yes | 0 No |
Is unix os free?
Does mac use unix?
What is the core of unix operating system?
How can you edit a large file without opening it in unix?
Name the different file types available with unix.
Differentiate between paging and swapping?
What is unix shell scripting used for?
What is RC (return code)? What is useful for? Which are the common values?
List a few significant features of unix?
Differentiate multiuser from multitask.
What is the command to connect to remote terminals
What is the difference between an absolute path and a relative path in unix?