There are a lot more options for find in the book than we will use. So don't feel overwhelmed. Just focus on the power that find has.
find
locate
locate bin/zip
find ~ -type f -name "*.JPG" -size +1M | wc -l
find ~ -type f -name 'foo*' -ok ls -l '{}' ';'
find ~ -name 'foo*' -exec rm -rf {} \;
xargs
find . | xargs grep 'someline'
find . | grep 'someline'
find ./foo -type f -name "*.txt" -exec rm {} \;
find ./foo -type f -name "*.txt" | xargs rm
touch
stat
locate /etc/res
find /etc -type f
find /etc/res* -type d
find ~ -type f -name "*.jpg" -size +1M
find ~ -type f -name "*.jpg" -size +1M | xargs ls -l
ls -l