How do I change all files (different types including .sh, .py, and other executable files) in a known directory to permission 775 without listing all of the file names?
I mean "all" of them in that directory, no exception.
UPDATED: The command below actually solved the problem for me. Any explanations why "+" instead of a "\"?
find . -type f -name "*.*" -exec chmod 775 {} +