How to find the files that are accessed before 10 minutes?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / ashok
echo "this script will put the num of 10 min old files
in /tmp in /tmp/chechold.txt
file "
find /tmp -size 0 -a time +10 - exec ls -s {}
\ ; /tmp /checkdd.txt
find /tmp -size 0 -a time +10 -exec rm _f {} \ ;
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / kirus
ls - ltr
it will show the the files with latest acces time in that
we can find the files that are accessed before 10 minutes
| Is This Answer Correct ? | 0 Yes | 17 No |
the difference between a soft link and a hard link?
What Command will remove a Directory in UNIX?
Using unix command how to display no of records in oracle?
Explain ‘library functions’ with respect to unix commands?
What is the pipe command?
What's a command word?
How to identify whether a file is normal file or directory?
29. How to display top 10 users Who | head -10 | wc –w
What is the use of touch command in there?
Which unix command to make a new directory?
How can we "forked" process in UNIX? How then recognize in any of the branches we?
How can you see the command line history?