mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 22:35:45 +02:00
2to3, 7za, 7zr: Dutch translations (#10218)
* 2to3: Dutch translation * 7za: Dutch translation * 7zr: Dutch translation --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
parent
0b6043db44
commit
f9c1bfa488
3 changed files with 102 additions and 0 deletions
32
pages.nl/common/2to3.md
Normal file
32
pages.nl/common/2to3.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# 2to3
|
||||
|
||||
> Geautomatiseerde conversie van Python 2 naar 3-code.
|
||||
> Meer informatie: <https://docs.python.org/3/library/2to3.html>.
|
||||
|
||||
- Geef de wijzigingen weer die zouden worden uitgevoerd zonder ze uit te voeren (simulatie):
|
||||
|
||||
`2to3 {{pad/naar/bestand.py}}`
|
||||
|
||||
- Converteer een Python 2-bestand naar Python 3:
|
||||
|
||||
`2to3 --write {{pad/naar/bestand.py}}`
|
||||
|
||||
- Converteer specifieke Python 2-taalfuncties naar Python 3:
|
||||
|
||||
`2to3 --write {{pad/naar/bestand.py}} --fix={{raw_input}} --fix={{print}}`
|
||||
|
||||
- Converteer alle Python 2-taalfuncties behalve de gespecificeerde naar Python 3:
|
||||
|
||||
`2to3 --write {{pad/naar/bestand.py}} --nofix={{has_key}} --nofix={{isinstance}}`
|
||||
|
||||
- Geef een lijst weer met alle beschikbare taalfuncties die kunnen worden geconverteerd van Python 2 naar Python 3:
|
||||
|
||||
`2to3 --list-fixes`
|
||||
|
||||
- Converteer alle Python 2-bestanden in een directory naar Python 3:
|
||||
|
||||
`2to3 --output-dir={{pad/naar/python3_directory}} --write-unchanged-files --nobackups {{pad/naar/python2_directory}}`
|
||||
|
||||
- Voer 2to3 uit met meerdere threads:
|
||||
|
||||
`2to3 --processes={{4}} --output-dir={{pad/naar/python3_directory}} --write --nobackups --no-diff {{pad/naar/python2_directory}}`
|
37
pages.nl/common/7za.md
Normal file
37
pages.nl/common/7za.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
# 7za
|
||||
|
||||
> Bestandsarchiver met een hoge compressieverhouding.
|
||||
> Vergelijkbaar met `7z`, behalve dat het minder bestandstypes ondersteunt, maar platformonafhankelijk is.
|
||||
> Meer informatie: <https://manned.org/7za>.
|
||||
|
||||
- Archiveer een bestand of directory:
|
||||
|
||||
`7za a {{pad/naar/archief.7z}} {{pad/naar/bestand_of_directory}}`
|
||||
|
||||
- Versleutel een bestaand archief (inclusief bestandsnamen):
|
||||
|
||||
`7za a {{pad/naar/versleuteld.7z}} -p{{wachtwoord}} -mhe={{on}} {{pad/naar/archief.7z}}`
|
||||
|
||||
- Pak een archief uit met behoud van de originele directory structuur:
|
||||
|
||||
`7za x {{pad/naar/archief.7z}}`
|
||||
|
||||
- Pak een archief uit naar een specifieke directory:
|
||||
|
||||
`7za x {{pad/naar/archief.7z}} -o{{pad/naar/uitkomst}}`
|
||||
|
||||
- Pak een archief uit naar `stdout`:
|
||||
|
||||
`7za x {{pad/naar/archief.7z}} -so`
|
||||
|
||||
- Archiveren met een specifiek archieftype:
|
||||
|
||||
`7za a -t{{7z|bzip2|gzip|lzip|tar|...}} {{pad/naar/archief.7z}} {{pad/naar/bestand_of_directory}}`
|
||||
|
||||
- Lijst de inhoud van een archief op:
|
||||
|
||||
`7za l {{pad/naar/archief.7z}}`
|
||||
|
||||
- Maak een lijst van beschikbare archieftypen:
|
||||
|
||||
`7za i`
|
33
pages.nl/common/7zr.md
Normal file
33
pages.nl/common/7zr.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# 7zr
|
||||
|
||||
> Bestandsarchiver met een hoge compressieverhouding.
|
||||
> Vergelijkbaar met `7z`, behalve dat het alleen `.7z`-bestanden ondersteunt.
|
||||
> Meer informatie: <https://manned.org/7zr>.
|
||||
|
||||
- Archiveer een bestand of directory:
|
||||
|
||||
`7zr a {{pad/naar/archief.7z}} {{pad/naar/bestand_of_directory}}`
|
||||
|
||||
- Versleutel een bestaand archief (inclusief bestandsnamen):
|
||||
|
||||
`7zr a {{pad/naar/versleuteld.7z}} -p{{wachtwoord}} -mhe={{on}} {{pad/naar/archief.7z}}`
|
||||
|
||||
- Pak een archief uit met behoud van de originele directory structuur:
|
||||
|
||||
`7zr x {{pad/naar/archief.7z}}`
|
||||
|
||||
- Pak een archief uit naar een specifieke directory:
|
||||
|
||||
`7zr x {{pad/naar/archief.7z}} -o{{pad/naar/uitkomst}}`
|
||||
|
||||
- Pak een archief uit naar `stdout`:
|
||||
|
||||
`7zr x {{pad/naar/archief.7z}} -so`
|
||||
|
||||
- Lijst de inhoud van een archief op:
|
||||
|
||||
`7zr l {{pad/naar/archief.7z}}`
|
||||
|
||||
- Maak een lijst van beschikbare archieftypen:
|
||||
|
||||
`7zr i`
|
Loading…
Add table
Reference in a new issue