home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / icon / dos / src / itest.bat < prev    next >
DOS Batch File  |  1992-01-25  |  227b  |  14 lines

  1. echo off
  2. icont -s %1
  3. echo Executing %1
  4. if not exist %1.dat goto skip1
  5. iconx -e - %1 <%1.dat >%1.out
  6. goto comp
  7. :skip1
  8. iconx -e - %1 >%1.out
  9. :comp
  10. compare %1.out stand\%1.out
  11. del %1.icx
  12. movefile %1.out local
  13. echo on
  14.