home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM
- REM ZIPDOC.BAT
- REM
- REM This BAT file can be executed from within any subdirectory to cause PKZIP
- REM to implode every *.DOC in the current directory into a single file called
- REM DOC.ZIP using the -m parameter to move the original files into DOC.ZIP.
- REM Use the UNZIPDOC.BAT file when necessary.
- REM
- pkzip doc *.doc -m -ex
- if errorlevel 1 goto errexit
- dir
- echo DOC.ZIP has been successfully created and original files deleted.
- goto exit
- :errexit
- echo Error in execution of PKZIP (via ZIPDOC.BAT).
- :exit
- echo on
-