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 ls command and what it does?

0 Answers  


what is the command to view gateway?

5 Answers  


What is the syntax of mkdir?

0 Answers  


What is mkdir m in linux?

0 Answers  


Which command will show you free/used memory? Does free memory exist on linux?

0 Answers  


Which command is used to delete a group?

0 Answers  


What is the command to check cpu speed in linux?

0 Answers  


How can we increase disk read performance in single command?

0 Answers  


in unix how to change old name to new name

7 Answers   Google,


Which command is used to review boot messages?

0 Answers  


Hi All of Unix/Linux professional Q.Why soft link file not open by cat command. Ihave make following symbolic link but when i open with #cat linkfilename it does not oped please see the following code and try to answer. # ln -s file1 ~/mydir/filea [root@dhcppc0 ~]# cd mydir [root@dhcppc0 mydir]# ls -l total 4 lrwxrwxrwx 1 root root 5 2010-04-04 09:04 filea -> file1 [root@dhcppc0 mydir]# cat filea cat: filea: No such file or directory

2 Answers  


What are the mv command options?

0 Answers  


Categories