1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.fr/common/csh.md
Sebastiaan Speck 57c50e9850
pages.fr: fix descriptions missing a space before the semicolon (#11778)
* pages.fr: fix descriptions missing a space before the semicolon

* aria2c: update French translation
2023-12-20 05:58:53 +05:30

487 B

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}}