find /path -name 'filename'
find /path -type f
or find /path -type d
find /path -perm 0755
find /path -size +100M
or find /path -size -1k
find /path -mtime -7
find /path -type f -empty
find /path -exec command {} \;
find /path -type f -delete
Challenge: