home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 417.img / PCB145-3.ZIP / PCBTEST.BAT < prev    next >
DOS Batch File  |  1990-11-07  |  312b  |  20 lines

  1. @echo off
  2. testfile %1 arc zip
  3. if errorlevel == 98 goto end
  4. if errorlevel == 2 goto zip
  5. if errorlevel == 1 goto arc
  6.  
  7. :zip
  8. pkunzip -t %1 > pcbfail.txt
  9. if errorlevel == 1 goto end
  10. del pcbfail.txt
  11. goto end
  12.  
  13. :arc
  14. xarc -t %1 > pcbfail.txt
  15. if errorlevel == 1 goto end
  16. del pcbfail.txt
  17. goto end
  18.  
  19. :end
  20.