mirror of https://github.com/CrimsonTome/tldr.git
nl: add Dutch translation and align mnemonics (#13147)
parent
1175713e36
commit
ee55f0ec6d
|
@ -0,0 +1,36 @@
|
|||
# nl
|
||||
|
||||
> Voorzie regels van een nummer uit een bestand of van `stdin`.
|
||||
> Meer informatie: <https://manned.org/nl.1p>.
|
||||
|
||||
- Voorzie niet-lege regels in een bestand van een nummer:
|
||||
|
||||
`nl {{pad/naar/bestand}}`
|
||||
|
||||
- Lees van `stdin`:
|
||||
|
||||
`{{commando}} | nl -`
|
||||
|
||||
- Nummer [a]lle [b]ody regels inclusief lege regels of [n]ummer geen [b]ody regels:
|
||||
|
||||
`nl -b {{a|n}} {{pad/naar/bestand}}`
|
||||
|
||||
- Nummer alleen de [b]ody regels die overeenkomen met een basis reguliere expressie (BRE) [p]atroon:
|
||||
|
||||
`nl -b p'FooBar[0-9]' {{pad/naar/bestand}}`
|
||||
|
||||
- Gebruik een specifieke [i]ncrement voor regelnummering:
|
||||
|
||||
`nl -i {{increment}} {{pad/naar/bestand}}`
|
||||
|
||||
- Specificeer het nummeringsformaat voor regels: [r]echts of [l]inks uitgelijnd, met of zonder voorloopnullen ([z]eros):
|
||||
|
||||
`nl -n {{rz|ln|rn}}`
|
||||
|
||||
- Specificeer de breedte ([w]) van de nummering (standaard is 6):
|
||||
|
||||
`nl -w {{col_width}} {{pad/naar/bestand}}`
|
||||
|
||||
- Gebruik een specifieke string om de regelnummers van de regels te [s]cheiden (standaard is TAB):
|
||||
|
||||
`nl -s {{separator}} {{pad/naar/bestand}}`
|
|
@ -27,10 +27,10 @@
|
|||
|
||||
`nl --number-format {{rz|ln|rn}}`
|
||||
|
||||
- Specificeer de breedte van de nummering (standaard is 6):
|
||||
- Specificeer de breedte ([w]) van de nummering (standaard is 6):
|
||||
|
||||
`nl --number-width {{kolombreedte}} {{pad/naar/bestand}}`
|
||||
|
||||
- Gebruik een specifieke string om de regelnummers van de regels te scheiden (standaard is TAB):
|
||||
- Gebruik een specifieke string om de regelnummers van de regels te [s]cheiden (standaard is TAB):
|
||||
|
||||
`nl --number-separator {{scheidingsteken}} {{pad/naar/bestand}}`
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
`{{command}} | nl -`
|
||||
|
||||
- Number [a]ll [b]ody lines including blank lines or do [n]ot number body lines:
|
||||
- Number [a]ll [b]ody lines including blank lines or do [n]ot number [b]ody lines:
|
||||
|
||||
`nl -b {{a|n}} {{path/to/file}}`
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
`{{command}} | nl -`
|
||||
|
||||
- Number [a]ll [b]ody lines including blank lines or do not [n]umber [b]ody lines:
|
||||
- Number [a]ll [b]ody lines including blank lines or do [n]ot number [b]ody lines:
|
||||
|
||||
`nl --body-numbering {{a|n}} {{path/to/file}}`
|
||||
|
||||
|
@ -27,10 +27,10 @@
|
|||
|
||||
`nl --number-format {{rz|ln|rn}}`
|
||||
|
||||
- Specify the line numbering's width (6 by default):
|
||||
- Specify the line numbering's [w]idth (6 by default):
|
||||
|
||||
`nl --number-width {{col_width}} {{path/to/file}}`
|
||||
|
||||
- Use a specific string to separate the line numbers from the lines (TAB by default):
|
||||
- Use a specific string to [s]eparate the line numbers from the lines (TAB by default):
|
||||
|
||||
`nl --number-separator {{separator}} {{path/to/file}}`
|
||||
|
|
Loading…
Reference in New Issue