Linux

The following command recursively CHMODs all directories in your directory to 755.

{code}

find /path/to/your/dir -type d -exec chmod 755 {} +

{/code}

 

If you have amny directories, you can also use the following command.

{code}

find /path/to/your/dir -type d -print0 | xargs -0 chmod 755

{/code}