I'd like to get a count of all files in a directory and its subdirectories but I don't want it to count .zip files. So I think something like this:
find . -iname "*.zip" -type f 2> /dev/null | wc -l
Except backwards - that would only return .zip files and I want to only count the other files.