1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 22:06:02 +02:00

nano: add French translation (#4567)

This commit is contained in:
Ivor Benderavage 2020-10-08 15:39:40 -04:00 committed by GitHub
parent 24d18d1af7
commit eed55126b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
pages.fr/common/nano.md Normal file
View file

@ -0,0 +1,24 @@
# nano
> Éditeur de texte simple et convivial. C'est un clone libre et amélioré de Pico.
> Plus amples informations: <https://nano-editor.org>.
- Ouvre un fichier:
`nano {{chemin/vers/fichier}}`
- Ouvre un fichier en positionnant le curseur à une rangée et colonne donnée:
`nano +{{ligne}},{{colonne}} {{chemin/vers/fichier}}`
- Active le défilement fluide:
`nano -S {{fichier}}`
- Indente les nouvelles lignes à la même indentation que les lignes précédentes:
`nano -i {{fichier}}`
- Avant la modification, sauvegarde le fichier actuel sous le format `{{nom_du_fichier_actuel}}~`:
`nano -B {{fichier}}`