Issue
I have multiple Joomla! sites. How to search and change CHMOD in all "configuration.php" files with bash SSH to 444 ?
Solution
Use this:
find /path -type f -name configuration.php -exec chmod 444 {} \;
You can also pass more than one path to find: find /path1 /path2 ...
Answered By - neuhaus