Set Rights for Files and Folders recursive
Jump to navigation
Jump to search
for directorys..
find /path/to/base/dir -type d -exec chmod 755 {} \;
for files..
find /path/to/base/dir -type f -exec chmod 644 {} \;
for directorys..
find /path/to/base/dir -type d -exec chmod 755 {} \;
for files..
find /path/to/base/dir -type f -exec chmod 644 {} \;