Set CRON to CHMOD
Posted by: Audioslave
Posted on: 2007-06-24 22:56:00
I'm looking to set a CRON to CHMOD all of my folders 755 and files 771.
What I've gathered is that
/bin/chmod 755 /home/username/*.php
would accomplish all the PHP files in that directory. If I set it to
/bin/chmod 755 /home/username/*/*.php
would it be recursive?
Also, I am COMPLETELY clueless on how to CHMOD directories recursively as such.