mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
pages.nl/common/*: add Dutch translation (#11620)
This commit is contained in:
parent
a25216ded7
commit
d78944fa43
10 changed files with 188 additions and 1 deletions
25
pages.nl/common/clang++.md
Normal file
25
pages.nl/common/clang++.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# clang++
|
||||
|
||||
> Compileert C++ bronbestanden.
|
||||
> Onderdeel van of LLVM.
|
||||
> Meer informatie: <https://clang.llvm.org>.
|
||||
|
||||
- Compileer een broncodebestand naar een uitvoerbaar binair bestand:
|
||||
|
||||
`clang++ {{pad/naar/bron.cpp}} -o {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Toon (bijna) alle fouten en waarschuwingen:
|
||||
|
||||
`clang++ {{pad/naar/bron.cpp}} -Wall -o {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Kies een taalstandaard om mee te compileren:
|
||||
|
||||
`clang++ {{pad/naar/bron.cpp}} -std={{c++20}} -o {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Voeg bibliotheken toe die zich op een ander pad bevinden dan het bronbestand:
|
||||
|
||||
`clang++ {{pad/naar/bron.cpp}} -o {{pad/naar/uitvoerbaar_bestand}} -I{{pad/naar/header_pad}} -L{{pad/naar/bibliotheek_pad}} -l{{pad/naar/bibliotheek_naam}}`
|
||||
|
||||
- Compileer broncode naar LLVM Intermediate Representation (IR):
|
||||
|
||||
`clang++ -S -emit-llvm {{pad/naar/bron.cpp}} -o {{pad/naar/output.ll}}`
|
16
pages.nl/common/tldr-lint.md
Normal file
16
pages.nl/common/tldr-lint.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# tldr-lint
|
||||
|
||||
> Controleert en formatteert `tldr` pagina's.
|
||||
> Meer informatie: <https://github.com/tldr-pages/tldr-lint>.
|
||||
|
||||
- Controleer alle pagina's:
|
||||
|
||||
`tldr-lint {{map_met_paginas}}`
|
||||
|
||||
- Formatteer een specifieke pagina naar `stdout`:
|
||||
|
||||
`tldr-lint --format {{pagina.md}}`
|
||||
|
||||
- Formateer alle pagina's ter plaatse:
|
||||
|
||||
`tldr-lint --format --in-place {{map_met_paginas}}`
|
37
pages.nl/common/transmission-cli.md
Normal file
37
pages.nl/common/transmission-cli.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
# transmission-cli
|
||||
|
||||
> Een lichtgewicht, command-line BitTorrent client.
|
||||
> Deze tool is verouderd, bekijk `transmission-remote`.
|
||||
> Meer informatie: <https://transmissionbt.com>.
|
||||
|
||||
- Download een specifieke torrent:
|
||||
|
||||
`transmission-cli {{url|magnet|pad/naar/bestand}}`
|
||||
|
||||
- Download een torrent naar een specifieke map:
|
||||
|
||||
`transmission-cli --download-dir {{pad/naar/download_map}} {{url|magnet|pad/naar/bestand}}`
|
||||
|
||||
- Maak een torrent bestand van een specifiek bestand of map:
|
||||
|
||||
`transmission-cli --new {{pad/naar/source_bestand_of_map}}`
|
||||
|
||||
- Zet de download snelheid limiet naar 50 KB/s:
|
||||
|
||||
`transmission-cli --downlimit {{50}} {{url|magnet|pad/naar/bestand}}`
|
||||
|
||||
- Zet de upload snelheid limiet naar 50 KB/s:
|
||||
|
||||
`transmission-cli --uplimit {{50}} {{url|magnet|pad/naar/bestand}}`
|
||||
|
||||
- Gebruik een specifieke poort voor verbindingen:
|
||||
|
||||
`transmission-cli --port {{port_number}} {{url|magnet|pad/naar/bestand}}`
|
||||
|
||||
- Forceer versleuteling voor alle peer-verbindingen:
|
||||
|
||||
`transmission-cli --encryption-required {{url|magnet|pad/naar/bestand}}`
|
||||
|
||||
- Gebruik een Bluetack-geformatteerde peer blocklist:
|
||||
|
||||
`transmission-cli --blocklist {{blocklist_url|pad/naar/blocklist}} {{url|magnet|pad/naar/bestand}}`
|
25
pages.nl/common/transmission-create.md
Normal file
25
pages.nl/common/transmission-create.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# transmission-create
|
||||
|
||||
> Maak BitTorrent `.torrent` bestanden.
|
||||
> Bekijk ook: `transmission`.
|
||||
> Meer informatie: <https://manned.org/transmission-create>.
|
||||
|
||||
- Maak een torrent met een stukgrootte van 2048 KB:
|
||||
|
||||
`transmission-create -o {{pad/naar/voorbeeld.torrent}} --tracker {{aankondigings-url_van_tracker}} --piecesize {{2048}} {{pad/naar/bestand_of_map}}`
|
||||
|
||||
- Maak een privé torrent met een stukgrootte van 2048 KB:
|
||||
|
||||
`transmission-create -p -o {{pad/naar/voorbeeld.torrent}} --tracker {{aankondigings-url_van_tracker}} --piecesize {{2048}} {{pad/naar/bestand_of_map}}`
|
||||
|
||||
- Maak een torrent met een opmerking:
|
||||
|
||||
`transmission-create -o {{pad/naar/voorbeeld.torrent}} --tracker {{tracker_url1}} -c {{opmerking}} {{pad/naar/bestand_of_map}}`
|
||||
|
||||
- Maak een torrent met meerdere trackers:
|
||||
|
||||
`transmission-create -o {{pad/naar/voorbeeld.torrent}} --tracker {{tracker_url1}} --tracker {{tracker_url2}} {{pad/naar/bestand_of_map}}`
|
||||
|
||||
- Toon de help-pagina:
|
||||
|
||||
`transmission-create --help`
|
21
pages.nl/common/transmission-daemon.md
Normal file
21
pages.nl/common/transmission-daemon.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# transmission-daemon
|
||||
|
||||
> Daemon bediend met `transmission-remote` of de webinterface.
|
||||
> Bekijk ook: `transmission`.
|
||||
> Meer informatie: <https://manned.org/transmission-daemon>.
|
||||
|
||||
- Start een headless `transmission` sessie:
|
||||
|
||||
`transmission-daemon`
|
||||
|
||||
- Start en bewaak een specifieke map voor nieuwe torrents:
|
||||
|
||||
`transmission-daemon --watch-dir {{pad/naar/map}}`
|
||||
|
||||
- Dump daemon-instellingen in JSON formaat:
|
||||
|
||||
`transmission-daemon --dump-settings > {{pad/naar/bestand.json}}`
|
||||
|
||||
- Start met specifieke instellingen voor de web interface:
|
||||
|
||||
`transmission-daemon --auth --username {{gebruikersnaam}} --password {{wachtwoord}} --port {{9091}} --allowed {{127.0.0.1}}`
|
13
pages.nl/common/transmission-edit.md
Normal file
13
pages.nl/common/transmission-edit.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# transmission-edit
|
||||
|
||||
> Wijzig aankondigings URL's van torrentbestanden.
|
||||
> Bekijk ook: `transmission`.
|
||||
> Meer informatie: <https://manned.org/transmission-edit>.
|
||||
|
||||
- Voeg een URL toe aan of verwijder deze uit de aankondigingslijst van een torrent:
|
||||
|
||||
`transmission-edit --{{add|delete}} {{http://example.com}} {{pad/naar/bestand.torrent}}`
|
||||
|
||||
- Werk de toegangscode van een tracker bij in een torrentbestand:
|
||||
|
||||
`transmission-edit --replace {{oude-toegangscode}} {{nieuwe-toegangscode}} {{pad/naar/bestand.torrent}}`
|
32
pages.nl/common/transmission-remote.md
Normal file
32
pages.nl/common/transmission-remote.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# transmission-remote
|
||||
|
||||
> Externe besturingshulpprogramma voor `transmission-daemon` en `transmission`.
|
||||
> Meer informatie: <https://transmissionbt.com>.
|
||||
|
||||
- Voeg een torrentbestand of magnet-link toe aan Transmission en download naar een opgegeven map:
|
||||
|
||||
`transmission-remote {{hostname}} -a {{torrent|url}} -w {{/pad/naar/download_map}}`
|
||||
|
||||
- Verander de standaard downloadmap:
|
||||
|
||||
`transmission-remote {{hostname}} -w {{/pad/naar/download_map}}`
|
||||
|
||||
- Toon alle torrents:
|
||||
|
||||
`transmission-remote {{hostname}} --list`
|
||||
|
||||
- Start torrent 1 en 2, stop torrent 3:
|
||||
|
||||
`transmission-remote {{hostname}} -t "{{1,2}}" --start -t {{3}} --stop`
|
||||
|
||||
- Verwijder torrent 1 en 2 en verwijder ook alle lokale gegevens voor torrent 2:
|
||||
|
||||
`transmission-remote {{hostname}} -t {{1}} --remove -t {{2}} --remove-and-delete`
|
||||
|
||||
- Stop alle torrents:
|
||||
|
||||
`transmission-remote {{hostname}} -t {{all}} --stop`
|
||||
|
||||
- Verplaats torrents 1-10 en 15-20 naar een nieuwe map (die wordt aangemaakt als deze nog niet bestaat):
|
||||
|
||||
`transmission-remote {{hostname}} -t "{{1-10,15-20}}" --move {{/pad/naar/nieuwe_map}}`
|
17
pages.nl/common/transmission-show.md
Normal file
17
pages.nl/common/transmission-show.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# transmission-show
|
||||
|
||||
> Verkrijg informatie over een torrent bestand
|
||||
> Bekijk ook: `transmission`.
|
||||
> Meer informatie: <https://manned.org/transmission-show>.
|
||||
|
||||
- Toon metadata voor een specifieke torrent:
|
||||
|
||||
`transmission-show {{pad/naar/bestand.torrent}}`
|
||||
|
||||
- Genereer een magnet-link voor een specifieke torrent:
|
||||
|
||||
`transmission-show --magnet {{pad/naar/bestand.torrent}}`
|
||||
|
||||
- Vraag de trackers van een torrent op en toon het huidige aantal peers:
|
||||
|
||||
`transmission-show --scrape {{pad/naar/bestand.torrent}}`
|
|
@ -1,6 +1,7 @@
|
|||
# transmission-create
|
||||
|
||||
> Create BitTorrent `.torrent` files.
|
||||
> See also: `transmission`.
|
||||
> More information: <https://manned.org/transmission-create>.
|
||||
|
||||
- Create a torrent with 2048 KB as the piece size:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# transmission-remote
|
||||
|
||||
> Remote control utility for transmission-daemon and transmission.
|
||||
> Remote control utility for `transmission-daemon` and `transmission`.
|
||||
> More information: <https://transmissionbt.com>.
|
||||
|
||||
- Add a torrent file or magnet link to Transmission and download to a specified directory:
|
||||
|
|
Loading…
Add table
Reference in a new issue