mc, jekyll, echo: add French translation and fix formatting in English version (#5000)

translation-badges
Ivor Benderavage 2020-12-03 07:11:40 -05:00 committed by GitHub
parent b0ef7f61b2
commit 2a56661112
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 64 additions and 4 deletions

23
pages.fr/common/echo.md Normal file
View File

@ -0,0 +1,23 @@
# echo
> Affiche les paramètres donnés dans la console.
- Affiche un message (les guillemets sont facultatifs) :
`echo "{{Hello World}}"`
- Affiche un message avec des variables d'environment :
`echo "{{Ma variable PATH est $PATH}}"`
- Affiche un message sans retour à la ligne :
`echo -n "{{Hello World}}"`
- Ajoute un message à un fichier :
`echo "{{Hello World}}" >> {{fichier.txt}}`
- Active l'interprétation des spécificateurs d'échappement :
`echo -e "{{Colonne 1\tColonne 2}}"`

24
pages.fr/common/jekyll.md Normal file
View File

@ -0,0 +1,24 @@
# jekyll
> Générateur de site statique simple et convenable aux blogs.
> Plus d'informations: <https://jekyllrb.com>.
- Génère un serveur de développement qui tourne au http://localhost:4000/ :
`jekyll serve`
- Active la régénération incrémentale :
`jekyll serve --incremental`
- Active la sortie verbeuse :
`jekyll serve --verbose`
- Génère le répertoire actuel dans `./_site` :
`jekyll build`
- Nettoie le site (c.-à.-d. supprime la sortie du site et le répertoire `cache`) sans compiler :
`jekyll clean`

13
pages.fr/common/mc.md Normal file
View File

@ -0,0 +1,13 @@
# mc
> Midnight Commander, gestionnaire de fichiers à base de console.
> La navigation dans les répertoires se fait à l'aide des touches directionnelles ou la souris, ou bien en tapant des commandes dans la console.
> Plus d'informations: <https://midnight-commander.org>
- Démarre `mc` :
`mc`
- Démarre `mc` en mode noir et blanc :
`mc -b`

View File

@ -15,10 +15,10 @@
`jekyll serve --verbose`
- Generate the current directory into "./_site":
- Generate the current directory into `./_site`:
`jekyll build`
- Clean the site (removes site output and cache folder) without building:
- Clean the site (removes site output and `cache` folder) without building:
`jekyll clean`

View File

@ -4,10 +4,10 @@
> Navigate the directory structure using the arrow keys, the mouse or by typing the commands into the terminal.
> More information: <https://midnight-commander.org>.
- Start mc:
- Start `mc`:
`mc`
- Start in black and white:
- Start `mc` in black and white:
`mc -b`