home *** CD-ROM | disk | FTP | other *** search
/ OS/2 the Most Complete Collection / OS2_The_Most_Complete_Collection_Powersource.iso / protocol / nfscsd1.exe / INSTALL.CMD next >
OS/2 REXX Batch file  |  1992-12-15  |  864b  |  33 lines

  1. /* Install NFSCSD files */
  2.  
  3. /* Check where to install (from SET ETC statement) */
  4. ENV = 'OS2ENVIRONMENT'
  5. ETC = VALUE('ETC',,ENV)
  6. if ETC = '' then
  7.     do
  8.     say ""
  9.     say "WARNING!"
  10.     say "You do NOT have the environment variable ETC defined!"
  11.     say "You should have already installed the OS/2 TCP/IP 1.2.1 refresh"
  12.     say "CSD installation will not continue."
  13.     say ""
  14.     exit 1
  15.     end
  16.  
  17. BASE=filespec("drive",ETC)||filespec("path",ETC)
  18. if substr(BASE, length(BASE), 1) = '\' then
  19.     BASE = substr(BASE, 1, length(BASE) - 1)
  20.  
  21.  
  22. /* REM BIN files */
  23. attrib BASE'\syslevel.nfs -r'
  24. copy 'A:syslevel.nfs' BASE'\syslevel.nfs'
  25. attrib BASE'\syslevel.nfs +r'
  26. copy 'A:nfsctl.exe' BASE'\bin\nfsctl.exe'
  27. copy 'A:nfsd.exe' BASE'\bin\nfsd.exe'
  28. copy 'A:ln.exe' BASE'\bin\ln.exe'
  29.  
  30. REM DOC file
  31. copy 'A:nfscsd.doc' BASE'\doc\nfscsd.doc'
  32.  
  33.