Mengubah permision folder menjadi 755 pada direktori /path/to/

find /path/to/ -type d -exec chmod 755 {} \;

Mengubah permision file menjadi 644 pada direktori /path/to/

find /path/to/ -type f -exec chmod 644 {} \;

Post comment