home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emtex15.zip / GBLATEX.ZIP / EMTEX / BTEXFMTS / GSLIFMT.CMD < prev    next >
OS/2 REXX Batch file  |  1992-06-23  |  696b  |  28 lines

  1. echo off
  2. rem gslifmt.cmd
  3. if exist hyphen.tex goto ex
  4. if exist lhyphen.tex goto ex
  5. if exist splaing.tex goto ex
  6. copy \emtex\texinput\ghyphen.min hyphen.tex
  7. copy \emtex\texinput\lhyphen.ger lhyphen.tex
  8. copy \emtex\texinput\splain.tex splaing.tex
  9. btexp -i -c850_tex -mt12000 splaing \dump
  10. if errorlevel 1 goto error
  11. goto done
  12.  
  13. :ex
  14. echo The following files should be removed or renamed before running gslifmt:
  15. if exist hyphen.tex echo hyphen.tex
  16. if exist lhyphen.tex echo lhyphen.tex
  17. if exist splaing.tex echo splaing.tex
  18. goto end
  19.  
  20. :error
  21. echo Error
  22.  
  23. :done
  24. if exist hyphen.tex del hyphen.tex
  25. if exist lhyphen.tex del lhyphen.tex
  26. if exist splaing.tex del splaing.tex
  27. :end
  28.