chmod menggunakan find in bash

find /target-folder -type d -exec chmod 0755 {} \;
find /target-folder -type f -exec chmod 0644 {} \;
Lucky Lyrebird