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



Write a command to find all of the files which have been accessed within the last 30 days. ..

Answer / anoop mittal

The Command is ,

find / -atime +30

Is This Answer Correct ?    29 Yes 11 No

Write a command to find all of the files which have been accessed within the last 30 days. ..

Answer / vikash

# find / -type f -mtime +30

Is This Answer Correct ?    18 Yes 6 No

Write a command to find all of the files which have been accessed within the last 30 days. ..

Answer / ajit mohan b

find / -type f -atime -30 = accessed
find / -type f -ctime -30 = changed
find / -type f -ctime -30 = modified

Is This Answer Correct ?    11 Yes 3 No

Write a command to find all of the files which have been accessed within the last 30 days. ..

Answer / jihad

find / -type f -atime -30

Is This Answer Correct ?    11 Yes 3 No

Write a command to find all of the files which have been accessed within the last 30 days. ..

Answer / ravikanth

find / -atime +30

Is This Answer Correct ?    8 Yes 2 No

Write a command to find all of the files which have been accessed within the last 30 days. ..

Answer / mrigendra singh

#find -ctime -720
these commond find all file in hour 720=24*30
thus 720h in 30 days.

Is This Answer Correct ?    5 Yes 0 No

Write a command to find all of the files which have been accessed within the last 30 days. ..

Answer / vikash

find / -type f -mtime -30

Is This Answer Correct ?    5 Yes 3 No

Write a command to find all of the files which have been accessed within the last 30 days. ..

Answer / sunil amal

find / -iname "*" -atime 30 -type f

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More Linux Commands Interview Questions

Brief about the command nn?

0 Answers  


Which two commands can you use to delete directories?

2 Answers  


You attempt to delete a file called sales.mem using the rm command but the command fails. What could be the problem?

0 Answers  


How to hide the partition in GRUB booting? (This technique is required when you have more that one Windows system on different partitions of the same disk, let us say the first and second partitions of the first hard drive, to boot from the first partition you must hide the second one)

2 Answers  


What the command used for list the contents of your home directory, current directory and all subdirectories?

0 Answers  






How do I find my user id in linux?

0 Answers  


How can we increase disk read performance in single command in Linux operating system?

0 Answers   Winsol Solutions,


Compare between SYS V launched processes and Xinetd processes in Linux.

1 Answers  


What does grep command do?

0 Answers  


What is unix finger command?

0 Answers  


how to create a new file command

17 Answers   Google,


What is the command to find the hardware configuration in Linux?

2 Answers  


Categories