home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / pmcstex.zip / install / emxdoc2inf.cmd < prev    next >
OS/2 REXX Batch file  |  1997-01-05  |  312b  |  14 lines

  1. @echo off
  2. if not exist %1.emxdoc goto syntax
  3. emxdoc -i  -f -e@ -o %1.ipf %1.emxdoc
  4. if not exist %1.ipf goto exit
  5. ipfc %1.ipf /inf
  6. del %1.ipf 2>nul
  7. if exist %1.inf view %1.inf
  8. goto exit
  9.  
  10. :syntax
  11. echo .emxdoc to .INF translator. 
  12. echo Syntax: emxdoc2inf _file_name_   (not _file_name_.emxdoc !)
  13.  
  14. :exit