1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

chmod: add more info link and update French translation (#5496)

This commit is contained in:
Patrice Denis 2021-03-24 23:00:22 +01:00 committed by GitHub
parent ea46986276
commit f45463dbd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -1,6 +1,7 @@
# chmod
> Modifie les droits d'accès d'un fichier ou d'un répertoire.
> Plus d'informations : <https://www.man7.org/linux/man-pages/man1/chmod.1.html>.
- Donne les droits d'e[x]écution à l'[u]tilisateur auquel le fichier appartient :
@ -22,6 +23,10 @@
`chmod o=g {{fichier}}`
- Retire tous les droits aux autres (o) utilisateurs :
`chmod o= {{fichier}}`
- Modifie les permissions recursivement en donnant aux membres du groupe et aux autres utilisateurs le droit d'écriture :
`chmod -R g+w,o+w {{repertoire}}`

View file

@ -1,6 +1,7 @@
# chmod
> Change the access permissions of a file or directory.
> More information: <https://www.man7.org/linux/man-pages/man1/chmod.1.html>.
- Give the [u]ser who owns a file the right to e[x]ecute it: