1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 17:35:28 +02:00

sudo: add Dutch translation (#16790)

This commit is contained in:
Dylan 2025-06-07 10:46:39 +00:00 committed by GitHub
parent 31f22adb26
commit b48a2022d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

36
pages.nl/common/sudo.md Normal file
View file

@ -0,0 +1,36 @@
# sudo
> Voert een commando uit als de superuser of een andere gebruiker.
> Meer informatie: <https://www.sudo.ws/sudo.html>.
- Voer een commando uit als de superuser:
`sudo {{less /var/log/syslog}}`
- Pas een bestand aan als superuser met jouw standaardeditor:
`sudo {{[-e|--edit]}} {{/etc/fstab}}`
- Voer een commando uit als een andere gebruiker en/of groep:
`sudo {{[-u|--user]}} {{gebruiker}} {{[-g|--group]}} {{groep}} {{id -a}}`
- Herhaal het laatste commando met `sudo` ervoor (alleen in Bash, Zsh, etc.):
`sudo !!`
- Start de standaard shell met superuserrechten en voer login-specifieke bestanden uit (`.profile`, `.bash_profile`, etc.):
`sudo {{[-i|--login]}}`
- Start de standaard shell met superuserrechten zonder de omgeving te veranderen:
`sudo {{[-s|--shell]}}`
- Start de standaard shell als de opgegeven gebruiker, laad de omgeving van de gebruiker en lees login-specifieke bestanden (`.profile`, `.bash_profile`, etc.):
`sudo {{[-i|--login]}} {{[-u|--user]}} {{gebruiker}}`
- Toon de toegestane (en verboden) commando's voor de aanroepende gebruiker:
`sudo {{[-ll|--list --list]}}`