home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem PKZIP (R) software for OS/2
- rem Copyright 1997 PKWARE Inc. All Rights Reserved.
- rem PKZIP Reg. U.S. Pat. and Tm. Off.
- rem
- rem This batch file is used to call pkzip.exe for
- rem extracting files.
- IF %1x == x goto pkhelp
- pkzip /extract %1 %2 %3 %4 %5 %6 %7 %8 %9
- goto end
- :pkhelp
- echo PKUNZIP.CMD Usage
- echo --------------------------------------------------------------
- echo Usage: PKUNZIP2 [Options] [.ZIP File] [Files to extract]
- echo --------------------------------------------------------------
- echo Example: PKUNZIP2 test
- echo This will extract all the files in test.zip into
- echo the current directory
- echo Example: PKUNZIP2 backup *.doc
- echo This will extract all of the file matching *.doc
- echo from the backup.zip file into the current directory
- echo Example: PKUNZIP2 /overwrite backup *.doc
- echo This will extract all of the files matching *.doc from
- echo the backup.zip file and will not prompt for overwrite
- echo Example: PKUNZIP2 backup doc\
- echo This will extract all of the files from the backup.zip
- echo file into the "doc" directory
- :end
- @echo on
-