home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / F / FT-REMPP.ZIP / REMOVE.BAT < prev    next >
DOS Batch File  |  1994-05-16  |  414b  |  29 lines

  1. @echo off
  2. if .%1==. goto usage
  3. if .%2==. goto usage
  4. testfile %1 arj zip
  5. if errorlevel 98 goto error
  6. if errorlevel 2 goto zip
  7. if errorlevel 1 goto arj
  8. goto error
  9.  
  10. :zip
  11. remzip %1 %2 %3 %4 %5
  12. goto end
  13.  
  14. :arj
  15. remarj %1 %2 %3 %4 %5
  16. goto end
  17.  
  18. :error
  19. echo  
  20. echo ! Cannot process %1, aborting.
  21. goto end
  22.  
  23. :usage
  24. echo  
  25. echo ! Usage : REMOVE.BAT arcfile.ext sigfile.ext [adlist.ext]
  26. echo  
  27.  
  28. :end
  29.