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

  1. /**/
  2.  
  3. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  4. call SysLoadFuncs
  5.  
  6.  
  7. parse arg language texmf source options
  8.  
  9.  
  10. install = texmf||'\os2tex\install'
  11.  
  12. call directory texmf
  13.  
  14.  
  15. if Pos("InstallFiles", options) > 0 then do
  16.  
  17.    say 'msg:Installiere Basisdateien für Metafont'
  18.  
  19.    install||'\unzip -o '||source||'\metafont.zip'
  20.  
  21. end
  22.  
  23.  
  24.  
  25.