mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
bat, cgclassify: add Dutch translation (#11544)
This commit is contained in:
parent
864e941267
commit
32271bc563
2 changed files with 45 additions and 0 deletions
29
pages.nl/common/bat.md
Normal file
29
pages.nl/common/bat.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# bat
|
||||
|
||||
> Bestanden tonen en samenvoegen.
|
||||
> Een `cat` kopie met syntax highlighting en Git integratie.
|
||||
> Meer informatie: <https://github.com/sharkdp/bat>.
|
||||
|
||||
- Toon de inhoud van een bestand naar `stdout`:
|
||||
|
||||
`bat {{pad/naar/bestand}}`
|
||||
|
||||
- Voeg verschillende bestanden samen in het doelbestand:
|
||||
|
||||
`bat {{bestand1}} {{bestand2}} > {{doelbestand}}`
|
||||
|
||||
- Voeg verschillende bestanden toe aan het doelbestand:
|
||||
|
||||
`bat {{bestand1}} {{bestand2}} >> {{doelbestand}}`
|
||||
|
||||
- Nummer alle uitvoerregels:
|
||||
|
||||
`bat --number {{pad/naar/bestand}}`
|
||||
|
||||
- Highlight de syntax van een JSON-bestand:
|
||||
|
||||
`bat --language json {{bestand.json}}`
|
||||
|
||||
- Toon alle ondersteunde talen:
|
||||
|
||||
`bat --list-languages`
|
16
pages.nl/linux/cgclassify.md
Normal file
16
pages.nl/linux/cgclassify.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# cgclassify
|
||||
|
||||
> Verplaats lopende taken naar opgegeven `cgroups`.
|
||||
> Meer informatie: <https://manned.org/cgclassify>.
|
||||
|
||||
- Verplaats het proces met een specifiek PID naar de controle groep student in de CPU hierarchie:
|
||||
|
||||
`cgclassify -g {{cpu:student}} {{1234}}`
|
||||
|
||||
- Verplaats het proces met een specifiek PID naar de controle groepen gebaseerd op het `/etc/cgrules.conf` configuratie bestand:
|
||||
|
||||
`cgclassify {{1234}}`
|
||||
|
||||
- Verplaats het proces met een specifiek PID naar de controle groep student in de CPU hierarchy. Let op: de daemon van de service `cgred` veranderd `cgroups` van de specifieke PID en zijn onderliggende processen niet (gebaseerd op `/etc/cgrules.conf`):
|
||||
|
||||
`cgclassify --sticky -g {{cpu:/student}} {{1234}}`
|
Loading…
Add table
Reference in a new issue