-sudo find "${folders[@]}" ! \( -user ramsi -a -group users \) -exec chown ramsi:users {} +
-find "${folders[@]}" -type f ! -perm 644 -exec chmod 0644 {} +
-find "${folders[@]}" -type d ! -perm 755 -exec chmod u=rwx,go=rx,a-s {} +
+find "${folders[@]}" ! \( -user ramsi -a -group users \) -exec sudo chown ramsi:users {} +
+find "${folders[@]}" -type f ! -perm 664 -exec chmod 0664 {} +
+find "${folders[@]}" -type d ! -perm 775 -exec chmod ug=rwx,o=rx,a-s {} +