chgrp: add French translation (#8595)

* chgrp: add French translation

* chgrp: conjudate the verb

Co-authored-by: Nicolas Hansse <nico.hansse@gmail.com>

Co-authored-by: Nicolas Hansse <nico.hansse@gmail.com>
pull/1/head
Alexandre ZANNI 2022-10-01 22:35:21 +02:00 committed by GitHub
parent 2506f957c1
commit 2ad103b54b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages.fr/common/chgrp.md Normal file
View File

@ -0,0 +1,20 @@
# chgrp
> Change la propriété de groupe des fichiers et des répertoires.
> Plus d'informations : <https://www.gnu.org/software/coreutils/chgrp>.
- Change le groupe propriétaire d'un fichier/répertoire :
`chgrp {{groupe}} {{chemin/vers/fichier_ou_répertoire}}`
- Change récursivement le groupe propriétaire d'un répertoire et de son contenu :
`chgrp -R {{groupe}} {{chemin/vers/répertoire}}`
- Change le groupe propriétaire d'un lien symbolique :
`chgrp -h {{groupe}} {{chemin/vers/lien_symbolique}}`
- Modifie le groupe propriétaire d'un fichier/répertoire pour qu'il corresponde à un fichier de référence :
`chgrp --reference={{chemin/vers/fichier_référence}} {{chemin/vers/fichier_ou_répertoire}}`