Complete the code to find files modified exactly 3 days ago.
find . -type f -mtime [1]-mtime with other options.The -mtime 3 option finds files modified exactly 3 days ago.
Complete the code to find files modified less than 5 days ago.
find /var/log -type f -mtime [1]The -mtime -5 option finds files modified less than 5 days ago.
Fix the error in the code to find files modified more than 10 days ago.
find /home/user -type f -mtime [1]The -mtime +10 option finds files modified more than 10 days ago.
Fill both blanks to find files modified between 2 and 5 days ago.
find . -type f -mtime [1] -a -mtime [2]
Use -mtime +2 to find files modified more than 2 days ago and -mtime -5 for less than 5 days ago, combining to find files modified between 2 and 5 days ago.
Fill all three blanks to find files modified exactly 7 days ago and print their names with details.
find /tmp -type f -mtime [1] -exec ls [2] [3] {} \;
-mtime value.ls options.-mtime 7 finds files modified exactly 7 days ago. The -exec ls -l -h {} \; prints detailed, human-readable file info.