This command recursively finds every file
matching the glob pattern *.* (name.extension)
in the working directory,
excluding child directories whose names start with ..
This is useful for skipping various VCS directories, for instance.
find . -type d -path './.*' -prune -o -type f -name '*.*' -print