mirror of https://github.com/CrimsonTome/tldr.git
614 B
614 B
zsh
Z SHell, un interpréteur de ligne de commande compatible avec Bash. Voir aussi
histexpand
pour l'expansion de l'historique. Plus d'informations : https://www.zsh.org.
- Démarre une session shell interactive :
zsh
- Exécute une commande, puis termine la session :
zsh -c "{{commande}}"
- Exécute un script :
zsh {{chemin/vers/le/script.zsh}}
- Exécute un script en affichant chaque commande avant de l'exécuter :
zsh --xtrace {{path/to/script.zsh}}
- Démarre une session shell interactive en mode verbeux, qui affiche chaque commande avant de l'exécuter :
zsh --verbose