From 742d0d10defec56b76fdf55d137d218a88e1bfc0 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 17 Oct 2023 12:32:25 +0200 Subject: [PATCH] chmod: update Dutch translation (#11015) * chmod: update Dutch translation --------- Co-authored-by: Jack Lin --- pages.nl/common/chmod.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pages.nl/common/chmod.md b/pages.nl/common/chmod.md index a524f67986..94c601370f 100644 --- a/pages.nl/common/chmod.md +++ b/pages.nl/common/chmod.md @@ -5,28 +5,32 @@ - Geef een gebruiker ([u]ser) die het bestand beheert het recht om deze uit te voeren (e[x]ecute): -`chmod u+x {{bestand}}` +`chmod u+x {{pad/naar/bestand}}` - Geef de gebruiker ([u]ser) het recht om een bestand of map te lezen ([r]ead) en schrijven ([w]rite): -`chmod u+rw {{bestand_of_map}}` +`chmod u+rw {{pad/naar/bestand_of_directory}}` - Haal uitvoertoestemming (e[x]ecute) voor een bestand weg van de [g]roep: -`chmod g-x {{bestand}}` +`chmod g-x {{pad/naar/bestand}}` - Geef [a]lle gebruikers toegang om een bestand te lezen ([r]ead) en schrijven ([w]rite): -`chmod a+rx {{bestand}}` +`chmod a+rx {{pad/naar/bestand}}` - Geef anderen ([o]thers) die niet in de groep van de beheerder zitten, dezelfde rechten als de [g]roep: -`chmod o=g {{bestand}}` +`chmod o=g {{pad/naar/bestand}}` - Haal alle rechten van de anderen ([o]thers) weg: -`chmod o= {{bestand}}` +`chmod o= {{pad/naar/bestand}}` - Verander de toestemmingen recursief, waarbij de [g]roep en anderen ([o]thers) de mogelijkheid tot schrijven ([w]rite) krijgen: `chmod -R g+w,o+w {{map}}` + +- Geef recursief alle gebruikers ([a]ll users) toegang om bestanden te lezen ([r]ead) en uitvoertoestemming (e[X]ecute) voor alle onderliggende mappen in een map: + +`chmod -R a+rX {{pad/naar/directory}}`