Exercice langage C corrigé utilisation des commandes

#/bin/tcsh 
if (! -f $argv[1].1) then 
   vi $1.1 
else 
     cp $argv[1].1 temp 
     vi $argv[1].1 
     cmp -s $argv[1].1 temp 
     switch ($status) 
     case 0 : 
         rm temp 
         breaksw 
     case 1 : 
         if (-f $argv[1].2) then 
            cp $argv[1].2 $argv[1].3 
         endif 
         mv temp $argv[1].2 
         breaksw 
     endsw 
endif

Télécharger aussi :

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *