htaccess: Apply chmod recursivley
- November 22nd, 2009
- Posted in Uncategorized
- Write comment
This will find and .htaccess and change the permissions.
find ./ -type f -name ‘*.htaccess’ -exec chmod 0644 -v {} \;
This will find and .htaccess and change the permissions.
find ./ -type f -name ‘*.htaccess’ -exec chmod 0644 -v {} \;
No comments yet.