home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / ONLINE / HTML2I_1 / HTML2I_1.ZIP / Html2Ipf / inf.cmd < prev    next >
OS/2 REXX Batch file  |  1997-04-05  |  567b  |  19 lines

  1. @echo off
  2. if /%1/ == // goto Usage
  3.  
  4. set TMP=.
  5. ipfc %1 /inf /d:1 /c:850 /s
  6. goto end
  7.  
  8. :Usage
  9. echo 
  10. echo Use this command file to compile a IPF file into a OS/2 INF book
  11. echo If you want to use a codepage different from 850, you should change
  12. echo the /c: switch in the IPFC command line below.
  13. echo 
  14. echo Note that the /s switch is used to get some size gain vs search speed.
  15. echo However, I didn`t observe a difference of search performance when compiling
  16. echo with and without this option (on my P5/200), so I prefer to use /s.
  17.  
  18. :end
  19.