Search for files modified in the last X amount of days in UNIX
Searches for files modified up to 2 days ago. find ./ -type f -mtime -2 -exec ls -al {} \
Searches for files modified up to 2 days ago. find ./ -type f -mtime -2 -exec ls -al {} \
find myProjectDirectory -type f \( -name \*\.php -o -name \*\.js -o -name \*\.css -o -name \*\.inc \) | xargs tar -rf myProjectTarName.tar
To set only files that end with .tpl to 600 (pattern escaped with slashes) find . -name \*\.tpl -exec chmod 600 {} \;