Précédent Index Suivant

6.6  Fonctions shell

la-fonction ()
{            
   ...        
}            

  Exemple de fonctions

% cat test-funct
#! /bin/sh

arguments()
{
  echo "  fonction arguments : $*"
}

echo "  dans le shell : $*"
arguments "hello world"
%
% test-funct coucou
  dans le shell : coucou
  fonction arguments : hello world
%
    

Précédent Index Suivant