home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Database / GBROUTE1,03PLUS.DMS / in.adf / Edit2HD < prev    next >
Encoding:
AmigaDOS Script File  |  1991-09-12  |  1.2 KB  |  48 lines

  1. .key drive
  2. .bra {
  3. .ket }
  4. .def drive DH0:       ;Edit here if you don't have DH0:
  5.  
  6.  
  7. ;+----------------------------------------------------------+
  8. ;| Complex Computers 1991 - Installation Script. 07-Sept-91 |
  9. ;+----------------------------------------------------------+
  10.  
  11.  
  12. echo "*n*E[32mGBRoutePlus*E[0m Installation Utility*n"
  13. assign >NIL: {drive} exists
  14. if warn
  15.  echo "*nSorry,device {drive} cannot be found."
  16.  echo "Installation terminated."
  17.  wait 5
  18.  endcli
  19. endif
  20.  
  21. if not exists {drive}GBRPlus
  22.  echo "*nSorry,the destination directory {drive}GBRPlus cannot be found."
  23.  echo "Installation terminated."
  24.  wait 5
  25.  endcli
  26. endif
  27.  
  28. echo "The GBRPlusEdit files will be copied to the GBRPlus directory on"
  29. echo "{drive} this will require approximately 6OK bytes free."
  30. echo "*nYou will need the GBRPlusEdit disk to install the Editor."
  31.  
  32. ask "*nAre you absolutely sure you want to do this? (Y/N) "
  33.  
  34. if warn
  35.    copy GBRPlusEdit:GBRPlusEdit to {drive}GBRPlus/
  36.    copy GBRPlusEdit:GBRPlusEdit.info to {drive}GBRPlus/
  37.    copy GBRPlusEdit:GBR1+.dat to {drive}GBRPlus/
  38.    copy GBRPlusEdit:GBR2+.dat to {drive}GBRPlus/
  39.  
  40.    echo "*nGBRPlusEdit has been installed sucessfully on {drive}"
  41.    wait 5
  42.     
  43.  else
  44.  
  45.    echo "*nInstallation terminated."
  46.  
  47. ENDIF 
  48.