How to find the files that are accessed before 10 minutes?

Answer Posted / alex

find -type f -amin -10

Explanation: Find all files (excluding directories) from the
current directory which have been accessed no more(-) than
10 minutes ago.

Is This Answer Correct ?    31 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between awk and grep?

557


What does grep v grep do?

548


What is the nmap command?

579


Differentiate cmp command from diff command.

586


What is the use of find command in unix?

575






What is awk used for?

616


What does the md command do?

568


What is ‘ps’ command for?

614


Write a command to kill the last background job?

617


What is command statement?

541


Which command is used to find whether the system is 32 bit or 64 bit?

629


What do chmod command do?

600


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

1758


What is the unix command to confirm a remote host is alive or not?

579


What does #!/ Bin sh do?

587