chmod: permisos en archivos Linux-Unix


  • chmod ugo+rwx test (da permisos rwx a todos, user,group,others)
  • chmod ugo-x test (quita permiso x (ejecucion) a todos, user,group,others) 
  • chmod o-rwx test (quita permisos rwx al resto (others)) 
  • chmod u=rwx,g=rx test (da permisos rwx a user, rx a group y ninguno a others)


You must be logged in to post a comment.