home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff330.lzh / XprKermit / Install < prev    next >
Text File  |  1990-03-02  |  369b  |  14 lines

  1. .K ""        ; Lets Xicon run this with cli if/then/else commands.
  2. ; A short install script to install xprkermit.library if it is not already
  3. ; installed, and to print the version.
  4.  
  5. if EXISTS libs:xprkermit.library
  6.     echo "xprkermit.library already installed, not replaced ..."
  7. else
  8.     copy xprkermit.library libs:
  9. endif
  10.  
  11. version xprkermit.library
  12.  
  13. echo "installation complete"
  14.