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:
parent
ea46986276
commit
f45463dbd0
2 changed files with 6 additions and 0 deletions
|
@ -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}}`
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue