Mengubah permision folder atau file secara rekursif pada ubuntu

Filed under Ubuntu

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 a Comment

Your email is never published nor shared. Required fields are marked *

*
*