tldr/pages.fr/common/ksh.md

22 lines
492 B
Markdown
Raw Normal View History

# ksh
> Korn SHell, un interpréteur de ligne de commande compatible avec Bash.
> Voir aussi `histexpand` pour l'expansion de l'historique.
> Plus d'informations : <http://kornshell.com>.
2021-10-19 13:58:13 +01:00
- Démarre une session shell interactive :
`ksh`
2021-10-19 13:58:13 +01:00
- Exécute une commande, puis termine la session :
`ksh -c "{{commande}}"`
2021-10-19 13:58:13 +01:00
- Exécute un script :
`ksh {{chemin/vers/le/script.ksh}}`
2021-10-19 13:58:13 +01:00
- Exécute un script en affichant chaque commande avant de l'exécuter :
`ksh -x {{chemin/vers/le/script.ksh}}`