change files and directories permissions recursively 17 Marzo 202217 Marzo 2022 Armando Basile find /path/to/base/dir -type d -print0 | xargs -0 chmod 775 find /path/to/base/dir -type f -print0 | xargs -0 chmod 664