home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / telecom / vlt_455 / libs / installlibraries < prev    next >
Text File  |  1991-02-12  |  2KB  |  67 lines

  1. .K ""
  2. echo "This script will install the following libraries if they are not"
  3. echo "already installed.  If they already exist, you will have to decide"
  4. echo "if the existing ones should be replaced with these, and do the"
  5. echo "update by hand."
  6. echo ""
  7. echo "    arp.library"
  8. echo "    duplexfont.library"
  9. echo "    review.library"
  10. echo "    screenshare.library"
  11. echo "    simplexfont.library"
  12. echo "    strokefont.library"
  13. echo "    xprascii.library"
  14. echo ""
  15.  
  16. if not EXISTS libs:arp.library
  17.     echo "No existing library, installing libs:arp.library..."
  18.     copy arp.library libs:arp.library
  19. else
  20.     echo "Found an existing libs:arp.library, not updated."
  21. endif
  22.  
  23. if not EXISTS libs:duplexfont.library
  24.     echo "No existing library, installing libs:duplexfont.library..."
  25.     copy duplexfont.library libs:duplexfont.library
  26. else
  27.     echo "Found an existing libs:duplexfont.library, not updated."
  28. endif
  29.  
  30. if not EXISTS libs:review.library
  31.     echo "No existing library, installing libs:review.library..."
  32.     copy review.library libs:review.library
  33. else
  34.     echo "Found an existing libs:review.library, not updated."
  35. endif
  36.  
  37. if not EXISTS libs:screenshare.library
  38.     echo "No existing library, installing libs:screenshare.library..."
  39.     copy screenshare.library libs:screenshare.library
  40. else
  41.     echo "Found an existing libs:screenshare.library, not updated."
  42. endif
  43.  
  44. if not EXISTS libs:simplexfont.library
  45.     echo "No existing library, installing libs:simplexfont.library..."
  46.     copy simplexfont.library libs:simplexfont.library
  47. else
  48.     echo "Found an existing libs:simplexfont.library, not updated."
  49. endif
  50.  
  51. if not EXISTS libs:strokefont.library
  52.     echo "No existing library, installing libs:strokefont.library..."
  53.     copy strokefont.library libs:strokefont.library
  54. else
  55.     echo "Found an existing libs:strokefont.library, not updated."
  56. endif
  57.  
  58. if not EXISTS libs:xprascii.library
  59.     echo "No existing library, installing libs:xprascii.library..."
  60.     copy xprascii.library libs:xprascii.library
  61. else
  62.     echo "Found an existing libs:xprascii.library, not updated."
  63. endif
  64.  
  65. echo "All Done.  Click close gadget to get rid of window."
  66. endcli
  67.