Write a command to find all of the files which have been
accessed within the last 30 days.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / diksha kakkar
the command is - find . -mtime -30 -print
Here you are telling find to list the files that were
modified with in last 30 days. You can increase the span of
time that "find" will report back on or go to a more
restricted time period.
| Is This Answer Correct ? | 17 Yes | 4 No |
Answer / sathyasen
ff -a -30 -u /dev/hd0
This displays the path name, i-node number, and owner's
user name (the -u flag) of each file on the /dev/hd0 device
that has been modified within the last 30 days ( -m -30).
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / 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 |
What command is used to replace the existing string with some other?
What is the search command in unix?
Explain command to show the space allocation of files?
How is the command '$cat file2 ' different from '$cat >file2 and >> redirection operators ?
What is .sh file?
What command a user use to view a long text file one page at a time in UNIX?
what is the advaantage of each user having its own copy of the shell?
what are the different commands used to create files?
what is the default permission for /etc/shadow file in UNIX
Describe the usage and functionality of the command rm –r * in unix?
Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be highly appreciated...
How we will execute previous command in vi editor?