home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ledar34.zip / leda-r-3_4_tar / LEDA-3.4 / confdir / util / unix / license.csh next >
Text File  |  1996-09-03  |  538b  |  31 lines

  1.  
  2. cat license.txt
  3. echo  -n "Do you want to continue ?  "
  4.  
  5. set answer = 0
  6.  
  7. while ( $answer == 0 )
  8.   set a = $<
  9.   if ( "$a" == "yes"|| "$a" == "YES" || "$a" == "Yes" ) set answer = yes
  10.   if ( "$a" == "no" || "$a" == "NO"  || "$a" == "No"  ) set answer = no
  11.   if ( $answer == 0 ) then
  12.     echo " "
  13.     echo -n "Please say YES or NO: "
  14.   endif
  15. end
  16.  
  17.  
  18. if ( $answer == no ) then
  19.    rm -f .license
  20.    echo " "
  21.    echo "Installation stopped."
  22.    echo " "
  23. else
  24.    echo " "
  25.    echo "ok, installation continues."
  26.    echo " "
  27.    touch .license
  28. endif
  29.  
  30.  
  31.