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
Why is awk called awk?
What is {} in find command?
What is ‘ps’ command for?
How can we use grep command in unix?
What is s and g in sed command?
Why is shebang used?
What is updatedb?
What is grep r?
How do I find previous commands in unix?
What are grep patterns?
What is the use of the tee command?
What is the use of finger command?
What are file commands?
Is ‘du’ a command? If so, what is its use?
Who invented grep?