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 command is used to switching between users in unix?
What does the command '$ls | wc –l > file1' do?
What is .sh file?
Which command is used to find whether the system is 32 bit or 64 bit?
What do chown command do?
What are the commands in UNIX to list the files in a Directory?
What is time_t?
What is a bash command?
How do you repeat a command in terminal?
How can we use grep command in unix?
What is the pipe command?
Which command is used to copy files?
Explain the terms ‘system calls’ and ‘library functions’ with respect to unix commands?
What are file commands?
What is a command and examples?