1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 17:13:50 +02:00

csh: add French translation (#10702)

* csh: add French translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
879hun675tgfoO098 2023-09-10 18:35:14 +02:00 committed by GitHub
parent ebd4b327a3
commit 6790184636
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
pages.fr/common/csh.md Normal file
View file

@ -0,0 +1,21 @@
# csh
> Le shell (interprèteur de commandes) affiche une syntaxe proche de C.
> Voir aussi : `tcsh`.
> Plus d'informations : <https://www.mkssoftware.com/docs/man1/csh.1.asp>.
- Démarrer une session interactive:
`csh`
- Démarrer une session interactive sans prendre en compte le fichier de configuration au démarrage:
`csh -f`
- Exécuter une commande:
`csh -c "{{echo 'Exécution de la commande echo par csh'}}"`
- Exécuter un script:
`csh {{chemin/vers/script.csh}}`