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

  1. /* Run this script to convert these HTML files into a OS/2 INF book   */
  2. /* You should have Image Alchemy for OS/2 on your path, or you should */
  3. /* run this batch file with -P- option                                */
  4. /* You also should have Information Presentation Facility Compiler    */
  5. /* somewhere on your path and set up correctly.                       */
  6.  
  7.  'call ..\html2ipf.cmd %1 html2ipf.html'
  8.  if stream('html2ipf.ipf', 'c', 'query exists') \= ''
  9.   then do
  10.         'call ..\inf.cmd html2ipf.ipf'
  11.         'del html2ipf.ipf 1>nul 2>nul'
  12.         'del *.bmp 1>nul 2>nul'
  13.        end;
  14.   else do
  15.         say 'Documentation conversion failed!'
  16.         say 'Please correct the problem, and run again.'
  17.        end;
  18. exit
  19.