A system administrator wants to find all files in /var/log that have been modified in the last 7 days and are larger than 100MB. Which command should be used?
Correct: -mtime -7 for last 7 days, -size +100M for >100MB.
Why this answer
The -mtime -7 finds files modified within 7 days, -size +100M finds files larger than 100MB.