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

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