Précédent Index Suivant

4.8  Les substitutions

Exécution par le shell des substitutions :

  Substitution de commandes

  Méta-caractères

Symbole Signification
``espace'' ``tabulation'' séparateurs d'arguments
``return'' terminaison de ligne
$ accès aux variables
* [ ] ? { } ~ expansion des noms de fichiers
< > & ! redirection
! ^ historique
| pipe
; délimiteur de commandes
() groupement de commandes
\ ' " caractères d'échappement
` substitution de commandes
& tâches de fond

  Here documents

command [argument]... << word
  command input                
  ...                        
word                         


Précédent Index Suivant