Practice Drill
Goal: Complete this drill from memory in the terminal below.
Find all .conf files under /etc that are larger than 1KB and modified in the last 7 days. Count how many there are and write just the number to /tmp/found.txt.
Tip: find /etc -name '*.conf' -size +1k -mtime -7 | wc -l