home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / dino / dino_bot.1 / source / shell / dino.special.example < prev    next >
Encoding:
Text File  |  1991-03-10  |  781 b   |  27 lines

  1.  
  2. # Copyright, 1990, Regents of the University of Colorado
  3. #
  4. # This is a Bourne shell script that handles any custom code for
  5. # compiling and executing DINO programs.
  6. #
  7.  
  8.     case $Target in
  9.      first_machine_name) 
  10.                         #
  11.                         # Put bourne shell script code here for
  12.                         # the first machine that has special code.
  13.                         #
  14.                         ;;
  15.      next_machine_name) 
  16.                         #
  17.                         # Put bourne shell script code here for
  18.                         # the next machine that has special code.
  19.                         #
  20.                         ;;
  21.      *)    echo
  22.            echo "     No special code provided for $Target"
  23.            echo
  24.            exit 1;;
  25.     esac
  26.  
  27.