Bulk change htaccess information vial CLI

On CLI run following command will help change from “FollowSymLinks” to “SymLinksIfOwnerMatch”

find /home -name ".htaccess" -type f -exec sed -i 's/FollowSymLinks/SymLinksIfOwnerMatch/g' {} ";"