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

What is cpu in linux?

0 Answers  


Suppose I lost a root password and I need to give it, I treid to change it through single usermode even though I am not get a password, then what is the otherprocedure to give a root password?

0 Answers  


How do I check dns entry?

0 Answers  


how to add linux user to group?

18 Answers  


What does chmod 666 do?

0 Answers  






Diff b/w C-shell and Born-shell

2 Answers   HP,


What does && mean in linux?

0 Answers  


What is parallel ssh?

0 Answers  


What does (cd dir && command) do?

0 Answers  


Explain getopts command of linux?

0 Answers  


What does execute mean in linux?

0 Answers  


How do I run a bash script in linux?

0 Answers  


Categories