How to tar a directory and only include certain file types
find myProjectDirectory -type f \( -name \*\.php -o -name \*\.js -o -name \*\.css -o -name…
find myProjectDirectory -type f \( -name \*\.php -o -name \*\.js -o -name \*\.css -o -name…
To set only files that end with .tpl to 600 (pattern escaped with slashes) find…