home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR4 / WILD401.ZIP / EXAMPLES.ARJ / PKZZOFF.BAT < prev    next >
DOS Batch File  |  1990-09-21  |  1KB  |  39 lines

  1. @echo off
  2. rem WILD is a ChaosWare program by CADMOS (Hari Courouclis)
  3. rem PKZIP is a ShareWare program by PKAWARE
  4.  
  5. if %1.==?. goto HELP
  6. if %1.==/?. goto HELP
  7.  
  8. if %1.==. goto ALL
  9. WILD PKZIP %1 -z wild {C:\BATCH\PKZ.OFF }nul
  10. if ErrorLevel 1 PKER
  11. goto END
  12.  
  13. :ALL
  14. if not exist *.ZIP goto NOZIP
  15. WILD PKZIP *.ZIP -z wild {C:\BATCH\PKZ.OFF }nul
  16. if ErrorLevel 1 PKER
  17. goto END
  18.  
  19. :NOZIP
  20. echo No ZIP files found. Use  PKZZOFF ?  for HELP
  21. goto END
  22.  
  23. :HELP
  24. echo.
  25. echo.=========================================================================
  26. echo PKZZOFF.BAT - (c) Hari Courouclis (CADMOS) 1990
  27. echo -------------------------------------------------------------------------
  28. echo FORMAT: PKZZOFF [ZipFileSpec]
  29. echo.
  30. echo PKZZOFF will remove any comments from ZIP files specified by ZipFileSpec
  31. echo         or from all ZIP files in current directory if ZipFileSpec is
  32. echo         not supplied.
  33. echo.
  34. echo PKZZOFF expects to find WILD.EXE (ver 2.0+) and PKZIP.EXE in the current
  35. echo         directory or in PATH, and PKZ.OFF in C:\BATCH
  36. echo.=========================================================================
  37.  
  38. :END
  39.