pages*: use " " instead of "=" to separate the options from their arguments, aria2c: fix example (#12726)
This commit is contained in:
@@ -13,11 +13,11 @@
|
||||
|
||||
- Convertir des fonctionnalités spécifiques de Python 2 vers Python 3 :
|
||||
|
||||
`2to3 --write {{chemin/vers/fichier.py}} --fix={{raw_input}} --fix={{print}}`
|
||||
`2to3 --write {{chemin/vers/fichier.py}} --fix {{raw_input}} --fix {{print}}`
|
||||
|
||||
- Convertir toutes les fonctionnalités de Python 2 vers Python 3 sauf exceptions spécifiques :
|
||||
|
||||
`2to3 --write {{chemin/vers/fichier.py}} --nofix={{has_key}} --nofix={{isinstance}}`
|
||||
`2to3 --write {{chemin/vers/fichier.py}} --nofix {{has_key}} --nofix {{isinstance}}`
|
||||
|
||||
- Afficher une liste de toutes les fonctionnalités de language qui peuvent être converties de Python 2 vers Python 3 :
|
||||
|
||||
@@ -25,8 +25,8 @@
|
||||
|
||||
- Convertir tous les fichier Python2 vers Python 3 dans un dossier :
|
||||
|
||||
`2to3 --output-dir={{chemin/vers/dossier_python3}} --write-unchanged-files --nobackups {{chemin/vers/dossier_python2}}`
|
||||
`2to3 --output-dir {{chemin/vers/dossier_python3}} --write-unchanged-files --nobackups {{chemin/vers/dossier_python2}}`
|
||||
|
||||
- Executer 2to3 avec plusieurs fil d'exécution :
|
||||
|
||||
`2to3 --processes={{4}} --output-dir={{chemin/vers/dossier_python3}} --write --nobackups --no-diff {{chemin/vers/dossier_python2}}`
|
||||
`2to3 --processes {{4}} --output-dir {{chemin/vers/dossier_python3}} --write --nobackups --no-diff {{chemin/vers/dossier_python2}}`
|
||||
|
@@ -18,11 +18,11 @@
|
||||
|
||||
- Limite la recherche aux fichiers d'un certain type :
|
||||
|
||||
`ack --type={{ruby}} "{{motif_de_recherche}}"`
|
||||
`ack --type {{ruby}} "{{motif_de_recherche}}"`
|
||||
|
||||
- Exlcus un certain type de fichier de la recherche :
|
||||
|
||||
`ack --type=no{{ruby}} "{{motif_de_recherche}}"`
|
||||
`ack --type no{{ruby}} "{{motif_de_recherche}}"`
|
||||
|
||||
- Compte le nombre total de correspondances :
|
||||
|
||||
|
@@ -10,7 +10,7 @@
|
||||
|
||||
- Télécharge un fichier via l'url spécifié en choisissant le nom de ce dernier :
|
||||
|
||||
`aria2c --out={{nom_de_fichier}} "{{url}}"`
|
||||
`aria2c --out {{nom_de_fichier}} "{{url}}"`
|
||||
|
||||
- Télécharge plusieurs fichiers (différents) en parallèle :
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
- Télécharge avec plusieurs connections :
|
||||
|
||||
`aria2c --split={{nombre_de_connections}} "{{url}}"`
|
||||
`aria2c --split {{nombre_de_connections}} "{{url}}"`
|
||||
|
||||
- Téléchargement FTP avec nom d'utilisateur et mot de passe :
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
- Convertis un fichier `.adoc` vers un fichier HTML et lie une feuille de style CSS :
|
||||
|
||||
`asciidoctor -a stylesheet={{chemin/vers/feuille_de_style.css}} {{chemin/vers/fichier.adoc}}`
|
||||
`asciidoctor -a stylesheet {{chemin/vers/feuille_de_style.css}} {{chemin/vers/fichier.adoc}}`
|
||||
|
||||
- Convertis un fichier `.adoc` vers un fichier HTML embarqué, en enlevant tout sauf le body :
|
||||
|
||||
@@ -17,4 +17,4 @@
|
||||
|
||||
- Convertis un fichier `.adoc` vers un PDF en utilisant la librairie `asciidoctor-pdf` :
|
||||
|
||||
`asciidoctor --backend={{pdf}} --require={{asciidoctor-pdf}} {{chemin/vers/fichier.adoc}}`
|
||||
`asciidoctor --backend {{pdf}} --require {{asciidoctor-pdf}} {{chemin/vers/fichier.adoc}}`
|
||||
|
Reference in New Issue
Block a user