home *** CD-ROM | disk | FTP | other *** search
/ The Companion for Windows / thecompanionforwindows1993.iso / zip110 / addendum.doc next >
Text File  |  1990-03-14  |  21KB  |  561 lines

  1.  
  2.  
  3.      PKZIP, PKUNZIP and PKSFX Version 1.1 includes several new features.
  4.      They are described in this addendum to the PKZIP, PKUNZIP and PKSFX
  5.      Version 1.0 manual.
  6.  
  7.  
  8.      PKZIP
  9.  
  10.      The following new features have been incorporated into the PKZIP
  11.      Version 1.1 software release.
  12.  
  13.      -3  Disable 80386 instruction usage
  14.      -----------------------------------
  15.  
  16.           This option is available for users with 80386 type computers.
  17.           It is used to turn OFF the added 80386 instructions or
  18.           registers.  When these instructions are available, PKZIP will
  19.           utilize them to allow the program to function even faster.
  20.           However, if you are running a different program that may
  21.           conflict with use of the 80386 instructions, you can disable
  22.           them by using this command.
  23.  
  24.           The 80386 instructions will be disabled only for the current
  25.           PKZIP operation.  They will then be enabled immediately after
  26.           the command operation is completed.
  27.  
  28.           C:\PKWARE> PKZIP FILES.ZIP  -3   -a  *.DOC
  29.  
  30.           In the above example,  all of the *.DOC files in the current
  31.           directory will be added to the ZIP file, FILES.ZIP.  The 80386
  32.           instructions will be disabled while the command is being
  33.           executed.
  34.  
  35.  
  36.           You can also disable the 80386 instructions when you start
  37.           PKZIP by using the PKNO386 environment variable.  To set the
  38.           environment variable, type PKNO386=xxxx, where "xxxx" is any
  39.           string you choose.  If the string PKNO386 is present in the
  40.           environment, then PKZIP (and PKUNZIP) will not use the 80386
  41.           instructions or registers.
  42.  
  43.           To enable the 80386 instructions after they have been
  44.           disabled, type SET PKNO386=<Enter>, where <Enter> refers to
  45.           the Enter key.
  46.  
  47.  
  48.           NOTE:  Disabling the 80386 usage will make PKZIP run up to
  49.                  twenty percent slower than if the 80386 instructions
  50.                  are used.
  51.  
  52.  
  53.  
  54.  
  55.      PKWARE Version 1.1  Addendum         1
  56.  
  57.  
  58.  
  59.      -^  Echo the command line
  60.      -------------------------
  61.  
  62.           This command is used to display the PKZIP command that you
  63.           entered on the console.  It is useful for example, when you
  64.           are using the View file option; the file specifications that
  65.           you entered will be echoed on the console along with the
  66.           command output.
  67.  
  68.           E:\> PKZIP  docs.zip  -vd -^ *.doc
  69.  
  70.           In this example, technical information about all of the *.doc
  71.           files included in the DOCS.ZIP  ZIP file will be displayed.
  72.           The information will be sorted by date, and the command line
  73.           will be redisplayed on the screen above the output.
  74.  
  75.  
  76.      -x@file  Exclude list file
  77.      --------------------------
  78.  
  79.           This option is used to exclude a List File from the current
  80.           operation.  Recall that a List File is a file containing a
  81.           list of files that are grouped together.  List Files can be
  82.           used with all the PKZIP and PKUNZIP command options.  They are
  83.           always preceded by the @ symbol on the command line.
  84.  
  85.           This command can be useful when you want to exclude a few
  86.           files from an operation and the DOS wild cards cannot be used
  87.           effectively.
  88.  
  89.           C:\ACTNG> PKZIP STORE  *.* -x@ACCOUNTS.LIS
  90.  
  91.           In the above example, all of the files in the current
  92.           directory, except for the List File, ACCOUNTS.LIS, will be
  93.           compressed into the ZIP file STORE.ZIP.
  94.  
  95.  
  96.      -$[d]   Save volume label
  97.      -------------------------
  98.  
  99.           This command is used to save the volume label of a specific
  100.           drive along with the ZIP file.  The default drive is the
  101.           current drive, unless another is specified.  The drive letter
  102.           is not saved in the ZIP file, only the volume label.
  103.  
  104.           C:\ACCTNG> PKZIP  FILES.TAX  -a -$  *.*
  105.  
  106.           In the above example, all of the files in the current directory
  107.           will be compressed into the ZIP file, FILES.TAX. They will be
  108.           stored along with the volume label for the C: drive.
  109.  
  110.  
  111.      PKWARE Version 1.1  Addendum         2
  112.  
  113.  
  114.  
  115.      -t  ZIP only files with a date equal to or later than specified
  116.      ---------------------------------------------------------------
  117.  
  118.           With this option, you can specify a date so that only files
  119.           with a date that is equal to or more recent than the date
  120.           specified will be included in the PKZIP operation.  If no date
  121.           is specified, today's date will be used by default.
  122.  
  123.           When specifying a date, use six digits in the following
  124.           format:  mmddyy.  For example, February 14, l990 will be
  125.           listed:  -t021490.  This is true for all computers setup as
  126.           American.  If your computer is setup as European, use the
  127.           following format: ddmmyy.  If your computer is setup as
  128.           Japanese, use the following format:  yymmdd.  If you are not
  129.           sure how your computer is setup, consult your user's manual.
  130.  
  131.           C:\BACKUP> PKZIP BAKS.ZIP  -t010190
  132.  
  133.           In this example, all files in the current directory with a
  134.           date later than or equal to January 1, l990 will be compressed
  135.           into the ZIP file, BAKS.ZIP.
  136.  
  137.  
  138.      -ei   Implode files only
  139.      ------------------------
  140.  
  141.           This option is used along with the mini-PKSFX program,
  142.           PKSFXjr.  Only files that have been imploded can be extracted
  143.           with PKSFXjr.  Shrunk files cannot be extracted.  In order to
  144.           create a PKSFXjr.EXE file, this option must be used.
  145.  
  146.           E:\BATS> PKZIP  EXT.ZIP  -ei
  147.  
  148.           In this example, all of the files in the current directory
  149.           will be compressed into the ZIP file, EXT.ZIP.  All of the
  150.           files will be imploded.
  151.  
  152.  
  153.      PKZIP Configuration File
  154.      ------------------------
  155.  
  156.           The PKZIP Configuration file can be used to set parameters to
  157.           values other than the normal default values.  There are three
  158.           additional Configuration file options available.  They are
  159.           explained on the following page.
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.      PKWARE Version 1.1  Addendum         3
  168.  
  169.  
  170.  
  171.           SHRINK > nnnnn
  172.           Where nnnn is some number specifying that files that are
  173.           greater than this number are to be Shrunk.  This option is
  174.           used to save time when you are compressing large files.
  175.           Typically, large files take longer to compress when the
  176.           imploding method is used.
  177.  
  178.           LISTCHAR=
  179.           This option is used to designate a special character to be used
  180.           to indicate a List file.  By default the  @ character is used,
  181.           as in @FILE.  If you want to use  @ as the first character in a
  182.           file name, you can designate an alternate character to be used
  183.           to indicate List files.  For example, you could use the # or
  184.           the % characters.
  185.  
  186.           OPTIONCHAR=
  187.           This option is used to designate a special character to be
  188.           used to indicate a command on the command line.  By default,
  189.           the minus sign  - is used.  If you want to use the minus sign
  190.           as the first character in a file name, you can designate an
  191.           alternate character to be used to indicate a command.  For
  192.           example, you could use the / character.
  193.  
  194.  
  195.           Also, PKZIP 1.1 will now search for the Configuration file in
  196.           the following order:
  197.  
  198.           1.  In the current directory.
  199.           2.  In the path specified by the PKZIP.CFG=  environment
  200.               variable.
  201.           3.  In the path where PKZIP was started from, if DOS version
  202.               greater than or equal to 3.x is being used.
  203.  
  204.  
  205.      Additional Error Code
  206.      ---------------------
  207.  
  208.           There is an additional error code available with PKZIP version
  209.           1.1.  PKZIP will exit with an errorlevel