0
0
Linux CLIscripting~5 mins

find by modification time in Linux CLI - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the find command option -mtime do?
It finds files based on when they were last modified. You can specify how many days ago the file was changed.
Click to reveal answer
beginner
How do you find files modified exactly 3 days ago using find?
Use find . -mtime 3. This finds files modified between 3 and 4 days ago.
Click to reveal answer
beginner
What does -mtime +5 mean in the find command?
It finds files modified more than 5 days ago (older than 5 days).
Click to reveal answer
beginner
What does -mtime -2 mean in the find command?
It finds files modified less than 2 days ago (newer than 2 days).
Click to reveal answer
beginner
Why is find . -mtime 0 useful?
It finds files modified within the last 24 hours. This is helpful to see very recent changes.
Click to reveal answer
Which command finds files modified more than 7 days ago?
Afind . -mtime +7
Bfind . -mtime -7
Cfind . -mtime 7
Dfind . -mtime 0
What does find . -mtime 1 find?
AFiles modified more than 1 day ago
BFiles modified less than 1 day ago
CFiles modified today
DFiles modified exactly 1 day ago (between 1 and 2 days)
How to find files modified within the last 24 hours?
Afind . -mtime 1
Bfind . -mtime +0
Cfind . -mtime 0
Dfind . -mtime -1
What does -mtime -3 mean?
AFiles modified less than 3 days ago
BFiles modified exactly 3 days ago
CFiles modified more than 3 days ago
DFiles modified 0 days ago
If you want to find files modified between 2 and 3 days ago, which command is correct?
Afind . -mtime 3
Bfind . -mtime 2
Cfind . -mtime -2 -mtime +3
Dfind . -mtime +2 -mtime -3
Explain how to use the find command to locate files modified within the last 5 days.
Think about how <code>-mtime</code> with a minus sign works.
You got /3 concepts.
    Describe the difference between -mtime 3, -mtime +3, and -mtime -3 in the find command.
    Consider how the plus and minus signs change the meaning.
    You got /4 concepts.