Write a command to find all of the files which have been
accessed within the last 30 days.
Answer Posted / jyoti pruthi
find / -atime -30
Here,
/ is for root directory
-atime is for access time
-30 is for within 30 days
It will give the details of the file that have been accessed
within the last 30 days.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is the functionality of a top command?
How do I clear my terminal history?
How can we use grep command in unix?
What is a command and examples?
What is the comma to display different lines that are found when compare two files?
Give the command for finding the current date.
What is in grep command?
What are bash commands?
How does the system know where one command ends and another begins?
What will the following command do?
Explain the terms ‘system calls’ and ‘library functions’ with respect to unix commands?
How do you repeat a command in terminal?
What is the function of grep command in unix?
What is difference between grep and find command in unix?
What is nr in awk command?