1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/tcsh if ($#argv == 3) then set a = $1 while ($a <= $2) cal $a $3 @ a++ end else echo " nombre de parametre 3" endif |
- Saturday
- May 17th, 2025
- Ajouter un cours
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/tcsh if ($#argv == 3) then set a = $1 while ($a <= $2) cal $a $3 @ a++ end else echo " nombre de parametre 3" endif |