-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chmod: add Spanish translation (#3705)
- Loading branch information
1 parent
4aae6b1
commit 2e0ae5c
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# chmod | ||
|
||
> Cambiar los permisos de acceso de un archivo o directorio. | ||
- Otorga al [u]suario que es propietario del archivo a ejecutarlo (x). | ||
|
||
`chmod u+x {{archivo}}` | ||
|
||
- Otorga al usuario derechos para leer (r) y escribir (w) un archivo o directorio: | ||
|
||
`chmod u+rw {{archivo_o_directorio}}` | ||
|
||
- Elimina los derechos de ejecución del [g]rupo: | ||
|
||
`chmod g-x {{archivo}}` | ||
|
||
- Otorga a todos los usuarios (a) derechos para leer y ejecutar: | ||
|
||
`chmod a+rx {{archivo}}` | ||
|
||
- Otorga a [o]tros (que no están en el grupo del propietario) los mismos derechos que los del grupo: | ||
|
||
`chmod o=g {{archivo}}` | ||
|
||
- Otorga al [g]rupo y a [o]tros el derecho para escribir (w) un directorio y su contenido: | ||
|
||
`chmod -R g+w,o+w {{directorio}}` |