home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / os2tex_1.zip / disk1.zip / disk_1 / plaintex.cmd < prev    next >
OS/2 REXX Batch file  |  1997-12-29  |  462b  |  33 lines

  1. /**/
  2.  
  3. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  4. call SysLoadFuncs
  5.  
  6.  
  7. parse arg language texmf source options
  8.  
  9.  
  10. directory(texmf)
  11.  
  12. install = texmf||'\os2tex\install'
  13.  
  14.  
  15. if Pos("InstallFiles", options) > 0 then do
  16.  
  17.    say 'msg:Lösche Verzeichnis tex\plain\base'
  18.  
  19.    install||'\kdir '||texmf||'\tex\plain\base'
  20.  
  21.  
  22.    say 'msg:Installiere PlainTeX Makrodateien'
  23.  
  24.    install||'\unzip '||source||'\plaintex.zip'
  25.  
  26. end
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.