mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 20:35:26 +02:00
fc: add Dutch translation (#13374)
This commit is contained in:
parent
2a1a4d2f3d
commit
f65c5bc959
2 changed files with 57 additions and 0 deletions
24
pages.nl/common/fc.md
Normal file
24
pages.nl/common/fc.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# fc
|
||||
|
||||
> Open het meest recente commando en bewerk het.
|
||||
> Meer informatie: <https://manned.org/fc>.
|
||||
|
||||
- Open in de standaard systeemeditor:
|
||||
|
||||
`fc`
|
||||
|
||||
- Specificeer een editor om mee te openen:
|
||||
|
||||
`fc -e {{'emacs'}}`
|
||||
|
||||
- Toon recente commando's uit de geschiedenis:
|
||||
|
||||
`fc -l`
|
||||
|
||||
- Toon recente commando's in omgekeerde volgorde:
|
||||
|
||||
`fc -l -r`
|
||||
|
||||
- Toon commando's in een gegeven interval:
|
||||
|
||||
`fc '{{416}}' '{{420}}'`
|
33
pages.nl/windows/fc.md
Normal file
33
pages.nl/windows/fc.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# fc
|
||||
|
||||
> Vergelijk de verschillen tussen twee bestanden of sets van bestanden.
|
||||
> Gebruik wildcards (*) om sets van bestanden te vergelijken.
|
||||
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/fc>.
|
||||
|
||||
- Vergelijk 2 opgegeven bestanden:
|
||||
|
||||
`fc {{pad\naar\bestand1}} {{pad\naar\bestand2}}`
|
||||
|
||||
- Voer een hoofdletterongevoelige vergelijking uit:
|
||||
|
||||
`fc /c {{pad\naar\bestand1}} {{pad\naar\bestand2}}`
|
||||
|
||||
- Vergelijk bestanden als Unicode-tekst:
|
||||
|
||||
`fc /u {{pad\naar\bestand1}} {{pad\naar\bestand2}}`
|
||||
|
||||
- Vergelijk bestanden als ASCII-tekst:
|
||||
|
||||
`fc /l {{pad\naar\bestand1}} {{pad\naar\bestand2}}`
|
||||
|
||||
- Vergelijk bestanden als binair:
|
||||
|
||||
`fc /b {{pad\naar\bestand1}} {{pad\naar\bestand2}}`
|
||||
|
||||
- Schakel tab-naar-spatie uitbreiding uit:
|
||||
|
||||
`fc /t {{pad\naar\bestand1}} {{pad\naar\bestand2}}`
|
||||
|
||||
- Comprimeer witruimte (tabs en spaties) voor vergelijkingen:
|
||||
|
||||
`fc /w {{pad\naar\bestand1}} {{pad\naar\bestand2}}`
|
Loading…
Add table
Reference in a new issue