Write a command to find all of the files which have been
accessed within the last 30 days.
Answer Posted / pk
find / -type f -atime -30 > November.files &
This command will find all the files under root, which is
"/", with file type is file. "-atime -30" will give all the
files accessed less than 30 days ago. And the output will
put into a file call November.files.
| Is This Answer Correct ? | 39 Yes | 2 No |
Post New Answer View All Answers
What do chgrp command do?
What does #!/ Bin sh do?
What is the difference between grep and grep?
What is the comma to show the space allocation of files?
What is in grep command?
What is awk good for?
How can we use grep command in unix?
Which unix command to make a new directory?
What does awk stand for?
Which command should you use to find the remaining disk space in unix server?
What is time_t?
Who command in unix operating system?
Who wrote grep?
What are grep patterns?
Why is shebang used?