home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 October / PCWorld_2002-10_cd.bin / Software / Topware / winrar / wrar300.exe / Rar.txt < prev    next >
Encoding:
Text File  |  2002-05-12  |  50.9 KB  |  1,363 lines

  1.                              User's Manual
  2.                              ~~~~~~~~~~~~~
  3.                      RAR 3.00 32-bit console version
  4.                      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  5.  
  6.                        =-=-=-=-=-=-=-=-=-=-=-=-=-=-
  7.                        Welcome to the RAR Archiver!
  8.                        -=-=-=-=-=-=-=-=-=-=-=-=-=-=
  9.  
  10.  Introduction
  11.  ~~~~~~~~~~~~
  12.  
  13.     RAR is a powerful tool which allows you to manage and control archive
  14.   files. The archive is usually a regular file, which name has a ".rar"
  15.   suffix.
  16.  
  17.   RAR features include:-
  18.  
  19.     *  Highly sophisticated, original compression algorithm
  20.     *  Special compression algorithms optimized for text, audio,
  21.        graphics data, 32 and 64-bit Intel executables
  22.     *  Better compression than similar tools, using 'solid' archiving
  23.     *  Authenticity verification (registered version only)
  24.     *  Self-extracting archives and volumes (SFX)
  25.     *  Ability to recover physically damaged archives
  26.     *  Locking, password, file order list, file security & more ...
  27.  
  28.  
  29.  Configuration file
  30.  ~~~~~~~~~~~~~~~~~~
  31.  
  32.   RAR for Unix reads configuration information from the file .rarrc
  33.   in the user's home directory (stored in HOME environment variable)
  34.   or in /etc directory.
  35.  
  36.   RAR for Windows reads configuration information from the file rar.ini,
  37.   placed in the same directory as the rar.exe file.
  38.  
  39.   This file may contain the following string:
  40.  
  41.   switches=<any RAR switches, separated with a space>
  42.  
  43.  
  44.  Environment variable
  45.  ~~~~~~~~~~~~~~~~~~~~
  46.  
  47.     Default parameters may be added to the RAR command line by establishing
  48.     an environment variable "RAR".
  49.  
  50.     For instance, in UNIX following lines may be added to your profile:
  51.  
  52.       RAR='-s -md1024'
  53.       export RAR
  54.  
  55.     RAR will use this string as default parameters in the command line and
  56.     will create "solid" archives with 1024 KB sliding dictionary size.
  57.  
  58.     RAR handles options with priority as following:
  59.  
  60.        command line switches                   highest priority
  61.        switches in the RAR variable            lower priority
  62.        switches saved in configuration file    lowest priority
  63.  
  64.  
  65.  Log file
  66.  ~~~~~~~~
  67.  
  68.   If the switch -ilog is specified in the command line or configuration
  69.   file, RAR will write informational messages, concerning errors
  70.   encountered while processing archives, to a log file. In Unix
  71.   this file is named .rarlog and placed in the user's home directory.
  72.   In Windows it is named rar.log and placed in the same directory as
  73.   the rar.exe file. Switch -ilog allows to override the default log name.
  74.  
  75.  
  76.  The file order list for solid archiving - rarfiles.lst
  77.  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  78.  
  79.   rarfiles.lst contains user-defined file list which tells RAR
  80.   the order to add files to a solid archive. It may contain file
  81.   names, wildcards and special entry - $default. The default
  82.   entry defines the place in order list for files not matched
  83.   with other entries in this file. The comment character is ';'.
  84.  
  85.   In Windows this file should be placed in the same directory as RAR,
  86.   in Unix - to the user's home directory or to /etc.
  87.  
  88.   Tips to provide improved compression and speed of operation:
  89.  
  90.   - similar files should be grouped together in the archive;
  91.   - frequently accessed files should be placed at the beginning.
  92.  
  93.  
  94.  RAR command line syntax
  95.  ~~~~~~~~~~~~~~~~~~~~~~~
  96.  
  97.  Syntax
  98.  
  99.     RAR <command>  [ -<switches> ]  <archive>  [ <@listfiles...> ]
  100.         [ <files...> ]  [ <path_to_extract\> ]
  101.  
  102.  Description
  103.  
  104.     Command line options (commands and switches) provides control of
  105.     creating and managing archives with RAR. The command is a string (or a
  106.     single letter) which commands RAR to perform a corresponding action.
  107.     Switches are designed to modify the way RAR performs the action. Other
  108.     parameters are archive name and files to be archived into or extracted
  109.     from the archive.
  110.  
  111.     Listfiles are plain text files contained names of files to process.
  112.     File names should start at the first column. It is possible to
  113.     put comments to the listfile after // characters. For example,
  114.     you may create backup.lst containing the following strings:
  115.  
  116.     c:\work\doc\*.txt         //backup text documents
  117.     c:\work\image\*.bmp       //backup pictures
  118.     c:\work\misc
  119.  
  120.     and then run:
  121.  
  122.        rar a backup @backup.lst
  123.  
  124.     If you wish to read file names from stdin (standard input),
  125.     specify the empty listfile name (just @).
  126.  
  127.     You may specify both usual file names and list files in the same
  128.     command line. If neither files nor listfiles are specified,
  129.     then *.* is implied and RAR will process all files
  130.  
  131.     In a UNIX environment you need to quote wildcards to avoid them being
  132.     processed by RAR itself. For example, this command will extract
  133.     *.asm files from RAR archives in current path:
  134.  
  135.        rar e '*.rar' '*.asm'
  136.  
  137.  
  138.     Command could be any of the following:
  139.  
  140.     a       Add files to archive.
  141.  
  142.             Example:
  143.  
  144.             create or update existent archive myarch, adding all files
  145.             in the current directory
  146.  
  147.             rar a myarch
  148.  
  149.  
  150.     c       Add archive comment. Comments are displayed while the archive is
  151.             being processed. Comment length is limited to 62000 bytes
  152.  
  153.             Examples:
  154.  
  155.             rar c distrib.rar
  156.  
  157.             Also comments may be added from a file:
  158.  
  159.             rar c -zinfo.txt dummy
  160.  
  161.  
  162.     cf      Add files comment. File comments are displayed when the 'v'
  163.             command is given. File comment length is limited to 32767 bytes.
  164.  
  165.             Example:
  166.  
  167.             rar cf bigarch *.txt
  168.  
  169.  
  170.     cw      Write archive comment to specified file.
  171.  
  172.             Example:
  173.  
  174.             rar cw oldarch comment.txt
  175.  
  176.  
  177.     d       Delete files from archive. Note, if the processing of this
  178.             command resulted in removing all the files from the archive, the
  179.             empty archive would removed.
  180.  
  181.  
  182.     e       Extract files to current directory.
  183.  
  184.  
  185.     f       Freshen files in archive. Updates those files changed since they
  186.             were packed to the archive. This command will not add new files
  187.             to the archive.
  188.  
  189.  
  190.     k       Lock archive. Any command which intends to change the archive
  191.             will be ignored.
  192.  
  193.             Example:
  194.  
  195.             rar k final.rar
  196.  
  197.  
  198.     l[t]    List contents of archive [technical]. Files are listed as with
  199.             the 'v' command with the exception of the file path. i.e. only
  200.             the file name is displayed. Optional technical information
  201.             (host OS, solid flag and old version flag) is displayed
  202.             when 't' modifier is used.
  203.  
  204.  
  205.     m[f]    Move to archive [files only]. Moving files and directories
  206.             results in the files and directories being erased upon
  207.             successful completion of the packing operation. Directories will
  208.             not be removed if 'f' modifier is used and/or '-ed' switch is
  209.             applied.
  210.  
  211.  
  212.     p       Print file to stdout.
  213.  
  214.  
  215.     r       Repair archive. Archive repairing is performed in two stages.
  216.             First, the damaged archive is searched for a recovery record
  217.             (see 'rr' command). If the archive contains a recovery record
  218.             and if the portion of the damaged data is continuous and less
  219.             than N*512 bytes, where N is number of recovery sectors placed
  220.             into the archive, the chance of successful archive
  221.             reconstruction is very high. When this stage has completed, a
  222.             new archive will be created, called _RECOVER.RAR.
  223.  
  224.             If a broken archive does not contain a recovery record or if
  225.             the archive is not completely recovered due to major damage, a
  226.             second stage is performed. During this stage only the archive
  227.             structure is reconstructed and it is impossible to recover
  228.             files which fail the CRC validation, it is still possible to
  229.             recover undamaged files which were inaccessible due to the
  230.             broken archive structure. Mostly this is useful for non-solid
  231.             archives.
  232.  
  233.             When the second stage is completed, the reconstructed archive
  234.             will be saved as _RECONST.RAR.
  235.  
  236.             While the recovery is in progress, RAR may prompt the user for
  237.             assistance when a suspicious file is detected.
  238.  
  239.                       Suspicious entry
  240.  
  241.               Name:  <possibly filename>
  242.               Size:  <size>    Packed: <compressed size>
  243.  
  244.                       Add it: Yes/No/All
  245.  
  246.             Answer 'y' to add this entry to the file _RECOVER.RAR.
  247.  
  248.             Example:
  249.  
  250.             rar r buggy.rar
  251.  
  252.  
  253.     rc      Reconstruct missing volumes using recovery volumes
  254.             (.rev files). You need to specify any existing volume
  255.             as the archive name, for example, 'rar rc backup.part03.rar'
  256.  
  257.             Read 'rv' command description for information about
  258.             recovery volumes.
  259.  
  260.  
  261.     rr[N]   Add data recovery record. Optionally, redundant information
  262.             (recovery record) may be added to an archive.  This will cause
  263.             a small increase of the archive size and helps to recover
  264.             archived files in case of floppy disk failure or data losses of
  265.             any other kind. A recovery record contains up to 32768 recovery
  266.             sectors. The number of sectors may be specified directly in the
  267.             'rr' command (N = 1, 2 .. 32768) or if it is not specified by the
  268.             user it will be selected automatically according to the archive
  269.             size: a size of the recovery information will be about 1%
  270.             of the total archive size, usually allowing the recovery of
  271.             up to 0.6% of the total archive size of continuously damaged data.
  272.  
  273.             It is also possible to specify the recovery record size in
  274.             percent to the archive size. Just append the percent character
  275.             to the command parameter. For example:
  276.  
  277.             rar rr3% arcname
  278.  
  279.             Note that if you run this command from .bat or .cmd file,
  280.             you need to use rr3%% instead of rr3%, because the command
  281.             processor treats the single '%' character as start of
  282.             batch file parameter. You may also use 'p' instead of '%',
  283.             so 'rr3p' will work too.
  284.  
  285.             If data are damaged continuously then each rr-sector helps to
  286.             recover 512 bytes of damaged information. This value may be
  287.             lower in cases of multiple damage.
  288.  
  289.             The size of the recovery record may be approximately determined
  290.             by the formula <archive size>/256 + <number of recovery
  291.             sectors>*512 bytes.
  292.  
  293.  
  294.     rv[N]   Create recovery volumes (.rev files), which can be later
  295.             used to reconstruct missing files in a volume set.
  296.             This command has sense only for multivolume archives
  297.             and you need to specify a name of the first volume
  298.             in the set as the archive name. For example:
  299.  
  300.             rar rv3 data.part01.rar
  301.  
  302.             This feature may be useful for backups or, for example,
  303.             when you posted a multivolume archive to a newsgroup
  304.             and a part of subscribers did not receive some files.
  305.             Reposting recovery volumes instead of usual volumes
  306.             may reduce a total number of files to repost.
  307.  
  308.             Each recovery volume is able to reconstruct one missing
  309.             RAR volume. For example, if you have 30 volumes and
  310.             3 recovery volumes, you are able to reconstruct any
  311.             3 missing volumes. If number of .rev files is less than
  312.             number of missing volumes, reconstructing is impossible.
  313.             Total number of usual and recovery volumes must not
  314.             exceed 255.
  315.  
  316.             The optional <N> parameter specifies a number of recovery
  317.             volumes to create and must be less than the total number
  318.             of RAR volumes in the set. You may also append a percent
  319.             character to this parameter, in such case the number of
  320.             creating .rev files will be equal to this percent taken
  321.             from the total number of RAR volumes. For example:
  322.  
  323.             rar rv15% data.part01.rar
  324.  
  325.             RAR reconstructs missing volumes either when using 'rc'
  326.             command or automatically, if it cannot locate the next
  327.             volume and finds the required number of .rev files
  328.             when unpacking.
  329.  
  330.             Recovery volumes cannot correct damaged RAR files, but only
  331.             completely reconstruct missing ones, so if your volume
  332.             is corrupt and you want to repair it using recovery volumes,
  333.             just delete it and then run 'rc' command.
  334.  
  335.             If recovery volume itself is corrupt, the result of
  336.             reconstructing is undefined. It is even possible that
  337.             a reconstructed volume will be also corrupt without any
  338.             warning when performing reconstructing.
  339.  
  340.             Names of recovery volumes contain information important
  341.             for reconstruction (the total number of usual and recovery
  342.             volumes and the number of concrete recovery volume).
  343.             You must not rename usual or recovery volumes after they
  344.             were created, otherwise RAR will not able to reconstruct
  345.             them later.
  346.             
  347.  
  348.     s[name] Convert archive to SFX. The archive is merged with SFX-module
  349.             (using a module in file default.sfx or specified in the switch).
  350.             In the Windows version default.sfx should be placed in the
  351.             same directory as the rar.exe, in Unix - in the user's
  352.             home directory, in /usr/lib or /usr/local/lib.
  353.  
  354.     s-      Remove SFX module from the already existing SFX archive.
  355.             RAR creates a new archive without SFX module, the original
  356.             SFX archive is not deleted.
  357.  
  358.     t       Test archive files. This command performs a dummy file
  359.             extraction, writing nothing to the output stream, in order to
  360.             validate the specified file(s).
  361.  
  362.             Examples:
  363.  
  364.             Test archives in current directory:
  365.  
  366.             rar t *
  367.  
  368.             or for Unix:
  369.  
  370.             rar t '*'
  371.  
  372.             User may test archives in all sub-directories, starting
  373.             with the current path:
  374.  
  375.             rar t -r *
  376.  
  377.             or for Unix:
  378.  
  379.             rar t -r '*'
  380.  
  381.  
  382.     u       Update files in archive. Adds files not already in the archive
  383.             and updates files changed since they were packed to the archive.
  384.  
  385.  
  386.     v[t]    Verbosely list the contents of archive [technical].
  387.             Files are listed using the format: full pathname, file comment,
  388.             original and compressed size, compression ratio, last update
  389.             date and time, attributes, CRC, compression method and minimum
  390.             RAR version required to extract. Optional technical information
  391.             (host OS, solid flag and old file version flag) is displayed
  392.             when 't' modifier is used.
  393.  
  394.             To list the contents of all archive volumes, use an asterisk
  395.             ('*') in place of the archive file extension or use the '-v'
  396.             switch.
  397.  
  398.             Example:
  399.  
  400.             direct archive content list (technical) to a file
  401.  
  402.             rar vt bambam >bambam.lst
  403.  
  404.  
  405.     x       Extract files with full path.
  406.  
  407.             Example:
  408.  
  409.             rar x -av- -c- dime 10cents.txt
  410.  
  411.             extract specified file to current path. AV check and comment
  412.             show are disabled.
  413.  
  414.  
  415.     Switches (used in conjunction with a command):
  416.  
  417.  
  418.     -?      Display help on commands and switches. The same as when none
  419.             or an illegal command line option is entered.
  420.  
  421.  
  422.     --      Stop switches scanning
  423.  
  424.             This switch tells to RAR that there is no more switches
  425.             in the command line. It could be useful, if either archive
  426.             or file name starts from '-' character. Without '--' switch
  427.             such name would be treated as switch.
  428.  
  429.             Example:
  430.  
  431.             add all files from the current directory to the solid archive
  432.             '-StrangeName'
  433.  
  434.             RAR a -s -- -StrangeName
  435.  
  436.     -ac     Clear Archive attribute after compression or extraction
  437.             (Windows version only).
  438.  
  439.  
  440.     -ad     Append archive name to destination path.
  441.  
  442.             This option may be useful when unpacking a group of archives.
  443.             By default RAR places files from all archives to the same
  444.             directory, but this switch creates a separate directory
  445.             for files unpacked from each archive.
  446.  
  447.             Example:
  448.  
  449.             rar x -ad *.rar data\
  450.  
  451.             RAR will create for every unpacking archive subdirectories
  452.             below 'data'.
  453.  
  454.  
  455.     -ag[format]
  456.             Generate archive name using the current date and time.
  457.  
  458.             Appends the current date string to an archive name when
  459.             creating an archive. Useful for daily backups.
  460.  
  461.             Format of the appending string is defined by the optional
  462.             "format" parameter or by "YYYYMMDDHHMMSS" if this parameter
  463.             is absent. Format string may include the following characters:
  464.  
  465.             Y   - year
  466.             M   - month
  467.             MMM - month name as text string (Jan, Feb, etc.)
  468.             W   - a week number (a week starts with Monday)
  469.             A   - day of week number (Monday is 1, Sunday - 7)
  470.             D   - day of month
  471.             E   - day of year
  472.             H   - hours
  473.             M   - minutes (treated as minutes if encountered after hours)
  474.             S   - seconds
  475.  
  476.             If the first character in the format string is '+', positions
  477.             of the date string and base archive name are exchanged,
  478.             so date will precede an archive name.
  479.  
  480.             All other characters are added to an archive name without
  481.             changes.
  482.  
  483.             Examples:
  484.  
  485.             1) use the default YYYYMMDDHHMMSS format
  486.  
  487.                rar a -ag backup
  488.  
  489.             2) use DD-MMM-YY format
  490.  
  491.                rar a -agDD-MMM-YY backup
  492.  
  493.             3) use YYYYMMDDHHMM format, place date before 'backup'
  494.  
  495.                rar a -ag+YYYYMMDDHHMM backup
  496.  
  497.             4) use YYYY-WW-A format
  498.  
  499.                rar a -agYYYY-WW-A backup
  500.  
  501.  
  502.     -ao     Add files with Archive attribute set
  503.             (Windows version only).
  504.  
  505.             Example:
  506.  
  507.             add all disk C: files with Archive attribute set
  508.             to the 'f:backup' and clear files Archive attribute
  509.  
  510.             rar a -r -ac -ao f:backup c:\*.*
  511.  
  512.  
  513.     -ap     Set path inside archive. This path is merged to file
  514.             names when adding files to an archive and removed
  515.             from file names when extracting.
  516.  
  517.             For example, if you wish to add the file 'readme.txt'
  518.             to the directory 'DOCS\ENG' of archive 'release',
  519.             you may run:
  520.  
  521.             rar a -apDOCS\ENG release readme.txt
  522.  
  523.             or to extract 'ENG' to the current directory:
  524.  
  525.             rar x -apDOCS release DOCS\ENG\*.*
  526.  
  527.  
  528.     -as     Synchronize archive contents
  529.  
  530.             If this switch is used when archiving, those archived files
  531.             which are not present in the list of the currently added
  532.             files, will be deleted from archive. It is convenient to use
  533.             this switch in combination with -u (update) to synchronize
  534.             contents of an archive and an archiving directory.
  535.  
  536.             For example, after the command:
  537.  
  538.             rar a -u -as backup sources\*.cpp
  539.  
  540.             the archive 'backup.rar' will contain only *.cpp files
  541.             from directory 'sources', all other files will be deleted
  542.             from the archive. It looks similar to creating a new archive,
  543.             but with the one important exception: if no files are
  544.             modified since a last backup, the operation is performed
  545.             much faster than creation of a new archive.
  546.  
  547.  
  548.     -av     Put authenticity verification (registered versions only).
  549.             RAR will put, in every new and updated archive, information
  550.             concerning the creator, last update time and archive name.
  551.  
  552.             If an archive, containing authenticity verification, is being
  553.             modified and this switch is not specified, the authenticity
  554.             verification information will be removed.
  555.  
  556.             When extracting, testing, listing or updating and archive with
  557.             the '-av' switch, RAR will perform integrity validation and
  558.             display the message:
  559.  
  560.               Verifying authenticity information ...
  561.  
  562.             In the case of successful authenticity verification, the message
  563.             'Ok', creator name and last update information will be
  564.             displayed. In the case of authenticity verification failure, the
  565.             message 'FAILED' will be displayed.
  566.  
  567.             The Authenticity Verification feature, '-av,' is recommended for
  568.             use with archives in a software distribution environment.
  569.  
  570.             In order to enable the Authenticity verification feature, the
  571.             program MUST be registered. Please contact your local
  572.             distribution site or the world-wide distribution center.
  573.  
  574.  
  575.     -av-    Disable authenticity verification checking or adding.
  576.  
  577.  
  578.     -cfg-   Disable read configuration and environment.
  579.  
  580.  
  581.     -cl     Convert file names to lower case.
  582.  
  583.  
  584.     -cu     Convert file names to upper case.
  585.  
  586.  
  587.     -c-     Disable comments show.
  588.  
  589.  
  590.     -df     Delete files after archiving
  591.  
  592.             Move files to archive. This switch in combination with
  593.             the command "A" performs the same action as the command "M".
  594.            
  595.  
  596.     -dh     Open shared files
  597.  
  598.             Allows to process files opened by other applications
  599.             for writing.
  600.  
  601.             This option could be dangerous, because it allows
  602.             to archive a file, which at the same time is modifying
  603.             by an other application, so use it carefully.
  604.  
  605.  
  606.     -ds     Do not sort files while adding to a solid archive.
  607.  
  608.  
  609.     -ed     Do not add empty directories
  610.  
  611.             This switch indicates that empty directories are not to be
  612.             stored in the created archive.
  613.  
  614.  
  615.     -ee     Do not process extended attributes
  616.  
  617.             Disables saving and restoring extended file attributes.
  618.             Only for OS/2 versions.
  619.  
  620.  
  621.     -en     Do not add "end of archive" block
  622.  
  623.             By default, RAR adds "end of archive" block to the end of new
  624.             or updated archive. It allows to skip external data like
  625.             digital signatures safely, but in some special cases it may be
  626.             useful to disable this feature. For example, if an archive
  627.             is transferred between two systems via a unreliable link and
  628.             at the same time a sender adds new files to it, it may be
  629.             important to be sure that the already received file part will
  630.             not be modified on the other end between transfer sessions.
  631.  
  632.             This switch cannot be used with volumes, because the end
  633.             of archive block contains information important for correct
  634.             volume processing. 
  635.  
  636.  
  637.     -ep     Exclude paths from names. This switch enables files to be added
  638.             to an archive without including the path information. This
  639.             could, of course, result in multiple files existing in the
  640.             archive with the same name.
  641.  
  642.  
  643.     -ep1    Exclude base dir from names. Do not store the path entered in
  644.             the command line.
  645.  
  646.             Example:
  647.  
  648.             all files and directories from the directory tmp will be added
  649.             to the archive 'test', but the path in archived names will not
  650.             include 'tmp\'
  651.  
  652.             rar a -ep1 -r test tmp\*
  653.  
  654.             This is equivalent to the commands:
  655.  
  656.             cd tmp
  657.             rar a -r ..\test
  658.             cd ..
  659.  
  660.  
  661.     -ep2    Expand paths to full. Store full file paths (except a drive
  662.             letter and leading path separator) when archiving.
  663.     
  664.  
  665.     -e<atr> Specifies file exclude attributes mask. <atr> is a number in the
  666.             decimal, octal (with leading '0') or hex (with leading '0x')
  667.             format. If result of bitwise AND between <atr> and file
  668.             attributes is nonzero, then file would not be added to archive.
  669.  
  670.             In the Windows version also is possible to use instead of
  671.             digital mask symbols D, S, H, A and R to denote directories
  672.             and files with system, hidden, archive and read-only attributes.
  673.             The order in which the attributes are given is not significant.
  674.  
  675.  
  676.     -f      Freshen files. May be used with archive extraction or creation.
  677.             The command string "a -f" is equivalent to the command 'f', you
  678.             could also use the switch '-f' with the commands 'm' or 'mf'. If
  679.             the switch '-f' is used with the commands 'x' or 'e', then only
  680.             old files would be replaced with new versions extracted from the
  681.             archive.
  682.  
  683.  
  684.     -hp[p]  Encrypt both file data and headers.
  685.  
  686.             This switch is similar to -p[p], but switch -p encrypts
  687.             only file data and leaves other information like file names
  688.             visible. This switch encrypts all sensitive archive areas
  689.             include file data, file names, sizes, attributes, comments
  690.             and other blocks, so it provides a higher security level.
  691.             Without a password it is impossible to view even the list of
  692.             files in archive encrypted with -hp.
  693.  
  694.             Example:
  695.  
  696.             rar a -hpfGzq5yKw secret report.txt
  697.  
  698.             will add the file report.txt to the encrypted archive
  699.             secret.rar using the password 'fGzq5yKw'
  700.  
  701.  
  702.     -idp    Disable percentage indicator.
  703.  
  704.             May be useful when redirecting output to a file.
  705.  
  706.  
  707.     -ieml[.][addr]
  708.             Send archive by email. Win32 version only.
  709.  
  710.             Attach an archive created or updated by the add command
  711.             to email message. You need to have MAPI compliant email
  712.             client to use this switch (most modern email programs
  713.             support MAPI interface).
  714.  
  715.             You may enter a destination email address directly
  716.             in the switch or leave it blank. In the latter case it
  717.             will be asked by your email program. It is possible to
  718.             specify several addresses separated with commas or
  719.             semicolons.
  720.  
  721.             If you append a dot character to -ieml, an archive will be
  722.             deleted after it was successfully attached to email.
  723.             If the switch is used when creating a multivolume archive,
  724.             every volume is attached to separate email message.
  725.  
  726.  
  727.     -ierr   Send all messages to stderr.
  728.  
  729.  
  730.     -ilog[name]
  731.             Log errors to file (registered version only).
  732.  
  733.             Write error messages to the file rar.log created in RAR
  734.             directory. It is possible to specify another log file name
  735.             instead of the default rar.log in the switch, for example,
  736.             -ilogc:\log\backup.log. If the specifed name does not
  737.             include path, the log file will be created in RAR directory.
  738.  
  739.  
  740.     -inul   Disable all messages.
  741.  
  742.  
  743.     -isnd   Enable sound.
  744.  
  745.  
  746.     -k      Lock archive. Any command which intends to change the archive
  747.             will be ignored.
  748.  
  749.  
  750.     -kb     Keep broken extracted files.
  751.  
  752.             RAR, by default, deletes files with CRC errors after
  753.             extraction. The switch -kb specifies that files with
  754.             CRC errors should not be deleted.
  755.  
  756.  
  757.     -m<n>   Set compression method:
  758.  
  759.        -m0   store     do not compress file when adding to archive
  760.        -m1   fastest   use fastest method (less compressive)
  761.        -m2   fast      use fast compression method
  762.        -m3   normal    use normal (default) compression method
  763.        -m4   good      use good compression method (more
  764.                        compressive, but slower)
  765.        -m5   best      use best compression method (slightly more
  766.                        compressive, but slowest)
  767.  
  768.             If this switch is not specified, RAR uses -m3 method
  769.             (normal compression).
  770.  
  771.             By default, RAR uses only the general compression
  772.             algorithm in -m1 and -m2 methods, advanced algorithms
  773.             like audio and true color processing are enabled
  774.             only in -m3..-m5 modes, the advanced text compression
  775.             is activated only in -m4..-m5. This default can be
  776.             overridden using -mc switch.
  777.  
  778.  
  779.     -mc<par>
  780.             Set advanced compression parameters.
  781.  
  782.             This switch is intended mainly for benchmarking and
  783.             experiments, in the real environment usually it is better
  784.             to allow RAR to select optimal parameters automatically.
  785.             Please note that improper use of this switch may lead
  786.             to very serious performance and compression loss, so use
  787.             it only if you clearly understand what you do.
  788.  
  789.             It has the following syntax:
  790.  
  791.             -mc[param1][:param2][module][+ or -]
  792.  
  793.             where <module> is the one character field denoting a part
  794.             of the compression algorithm, which has to be configured.
  795.  
  796.             It may have the following values:
  797.  
  798.               A       - audio compression;
  799.               C       - true color (RGB) data compression;
  800.               D       - delta compression;
  801.               E       - 32-bit x86 executables compression;
  802.               I       - 64-bit Intel Itanium executables compression;
  803.               T       - text compression.
  804.  
  805.             '+' sign at the end of switch applies the selected algorithm
  806.             module to all processed data, '-' disables the module at all.
  807.             If no sign is specified, RAR will choose modules automatically,
  808.             basing on data and the current compression method.
  809.  
  810.             Switch -mc- disables all optional modules and allows only
  811.             the general compression algorithm.
  812.  
  813.             <Param1> and <Param2> are module dependent parameters
  814.             described below.
  815.  
  816.             Audio compression, delta compression:
  817.  
  818.             <Param1> is a number of byte channels (can be 1 - 31).
  819.             RAR splits multibyte channels to bytes, for example,
  820.             two 16-bit audio channels are considered by RAR as four
  821.             channels one byte each.
  822.  
  823.             <Param2> is ignored.
  824.  
  825.  
  826.             32-bit x86 Intel executables compression,
  827.             64-bit Intel Itanium executables compression,
  828.             true color (RGB) data compression:
  829.  
  830.             <Param1> and <Param2> are ignored.
  831.  
  832.  
  833.             Text compression: 
  834.  
  835.             <Param1> is the order of PPM algorithm (can be 2 - 63).
  836.             Usually a higher value slightly increases the compression ratio
  837.             of redundant data, but only if enough memory is available
  838.             to PPM. In case of lack of memory the result may be negative.
  839.             Higher order values decrease both compression and decompression
  840.             speed.
  841.  
  842.             <Param2> is memory in megabytes allocated for PPM (1-128).
  843.             Higher values may increase the compression ratio, but note
  844.             that PPM uses the equal memory size both to compress and
  845.             decompress, so if you allocate too much memory when creating
  846.             an archive, other people may have problems when decompressing
  847.             it on a computer with less memory installed. Decompression
  848.             will be still possible using virtual memory, but it may
  849.             become very slow.
  850.  
  851.  
  852.             Examples:
  853.  
  854.             1) switch -mc1a+ forces use of 8-bit mono audio compression
  855.             for all data.
  856.  
  857.             2) switch -mc10:40t+ forces use of text compression
  858.             algorithm for all data, sets the compression order to 10
  859.             and allocates 40 MB memory.
  860.  
  861.             3) switch -mc12t sets the text compression order to 12,
  862.             when the text compression is used, but leaves to RAR to
  863.             decide when to use it.
  864.  
  865.             4) switches -mct- -mcd- disable text and delta compression.
  866.  
  867.  
  868.     -md<n>  Select dictionary size <n> in KB. Must be 64, 128, 256, 512,
  869.             1024, 2048 or 4096 or a letter 'a', 'b', 'c', 'd', 'e', 'f', 'g'
  870.             respectively.
  871.  
  872.             The sliding dictionary is a special memory area used by the
  873.             compression algorithm. If the size of the file being compressed
  874.             (or the total files size in the case of a solid archive) is
  875.             greater than the dictionary size, then increasing the dictionary
  876.             size will generally increase compression ratio, decrease packing
  877.             speed and increase memory requirements.
  878.  
  879.             RAR can reduce the dictionary size if it is significantly
  880.             larger than size of source data. It helps to reduce memory
  881.             requirements without decreasing compression.
  882.  
  883.             Default sliding dictionary size is 4096 KB.
  884.  
  885.             Example:
  886.  
  887.             RAR a -s -mdd sources *.asm
  888.                 or
  889.             RAR a -s -md512 sources *.asm
  890.  
  891.             Will create a solid archive using a 512 KB dictionary.
  892.  
  893.  
  894.     -ms[list]
  895.             Specify file types to store.
  896.  
  897.             Specify file types, which will be stored without compression.
  898.             This switch may be used to store already compressed files,
  899.             what helps to increase archiving speed without noticeable loss
  900.             in the compression ratio.
  901.  
  902.             Optional <list> parameter defines the list of file extensions
  903.             separated with a semicolon. For example, -msrar;zip;jpg will
  904.             force RAR to store without compression all RAR and ZIP
  905.             archives and JPG images. It is also allowed to specify wildcard
  906.             file masks in the list, so -ms*.rar;*.zip;*.jpg will work too.
  907.  
  908.             If <list> is not specified, -ms switch will use the default
  909.             set of extensions, which includes the following file types:
  910.  
  911.             ace, arj, bz2, cab, gz, jpeg, jpg, lha, lzh, mp3,
  912.             rar, zip, taz, tgz, z
  913.  
  914.  
  915.     -ol     Save symbolic links as the link instead of the file.
  916.             Unix version only.
  917.  
  918.  
  919.     -os     Save NTFS streams. Win32 version only.
  920.  
  921.             This switch has meaning only for NTFS file system under
  922.             Windows NT and allows to save alternative data streams
  923.             associated with a file. It is especially important under
  924.             Windows 2000, which uses streams to keep some file dependent
  925.             information like file descriptions. If you use RAR to backup
  926.             your NTFS disks, it is recommended to specify this switch.
  927.  
  928.  
  929.     -ow     Use this switch when archiving to save file security
  930.             information and when extracting to restore it.
  931.  
  932.             Unix RAR version saves file owner and group when using
  933.             this switch.
  934.  
  935.             Win32 version stores owner, group, file permissions and
  936.             audit information, but only if you have necessary privileges
  937.             to read them. Note that only NTFS file system supports
  938.             file based security under Windows.
  939.  
  940.     -o+     Overwrite existing files.
  941.  
  942.  
  943.     -o-     Do not overwrite existing files.
  944.  
  945.  
  946.     -p[p]   Encrypt files with the string <p> as password while archiving.
  947.             The password is case-sensitive. If you omit the password on the
  948.             command line, you will be prompted with message "Enter password".
  949.  
  950.             Example:
  951.  
  952.             rar a -pmyhoney secret1 *.txt
  953.  
  954.             add files *.txt and encrypt them with password "myhoney".
  955.  
  956.  
  957.     -p-     Do not query password
  958.  
  959.  
  960.     -r      Recurse subdirectories. May be used with commands:
  961.             a, u, f, m, x, e, t, p, v, l, c, cf and s.
  962.  
  963.             When used with the commands 'a', 'u', 'f', 'm' will process
  964.             files in all sub-directories as well as the current working
  965.             directory.
  966.  
  967.             When used with the commands x, e, t, p, v, l, c, cf or s will
  968.             process all archives in sub-directories as well as the current
  969.             working directory.
  970.  
  971.  
  972.     -r0     Similar to -r, but when used with the commands 'a', 'u', 'f',
  973.             'm' will recurse subdirectories only for those names, which
  974.             include wildcard characters '*' and '?'
  975.  
  976.  
  977.     -ri<p>[:<s>]
  978.             Set priority and sleep time. Available only in RAR for Windows.
  979.             This switch is used to regulate system load by RAR in a
  980.             multitasking environment. The possible task priority values are
  981.             from 0 to 15. When <p> is equal to 0, the default task priority
  982.             is used, 1 corresponding to the lowest task priority, 15 - to
  983.             the highest. The sleep time <s> is a value from 0 to 1000
  984.             (milliseconds). This is the period of time that RAR will give
  985.             back to system after every read or write during the packing or
  986.             unpacking operation. The sleep time setting is useful when
  987.             several tasks with the same priority are running in the system.
  988.  
  989.             Example:
  990.  
  991.             execute RAR with default priority and 10 ms of sleep after
  992.             each read or write
  993.  
  994.             rar a -r -sfx -ri0:10 backup *.*
  995.  
  996.  
  997.     -rr[N]  Add a data recovery record. This switch is used when creating or
  998.             modifying archive to add a data recovery record to the archive.
  999.             See the 'rr[N]' command description for details.
  1000.  
  1001.  
  1002.     -rv[N]  Create recovery volumes. This switch is used when creating
  1003.             a multivolume archive to generate recovery volumes.
  1004.             See the 'rv[N]' command description for details.
  1005.  
  1006.  
  1007.     -s      Create solid archive. Solid is a special archive type. Please
  1008.             refer to the appendix "Glossary" for further information.
  1009.  
  1010.             Example:
  1011.  
  1012.             create solid archive sources.rar with 512 KB dictionary,
  1013.             recursing all directories, starting with the current directory.
  1014.             Add only .asm files:
  1015.  
  1016.             rar a -s -md512 sources.rar *.asm -r
  1017.  
  1018.  
  1019.     -s<N>   Create solid groups using file count
  1020.  
  1021.             Similar to -s, but reset solid statistics after compressing
  1022.             <N> files. Usually decreases compression, but also
  1023.             decreases losses in case of solid archive damages.
  1024.  
  1025.  
  1026.     -se     Create solid groups using extension
  1027.  
  1028.             Similar to -s, but reset solid statistics if file extension
  1029.             is changed. Usually decreases compression, but also
  1030.             decreases losses from solid archive damages.
  1031.  
  1032.  
  1033.     -sv     Create independent solid volumes
  1034.  
  1035.             By default RAR tries to reset solid statistics as soon
  1036.             as possible when starting a new volume, but only 
  1037.             if a lot enough data was packed after a previous reset
  1038.             (at least a few megabytes).
  1039.  
  1040.             This switch forces RAR to ignore packed data size and attempt
  1041.             to reset statistics for volumes of any size. It decreases
  1042.             compression, but increases chances to extract a part of data 
  1043.             if one of solid volumes in volume set was lost or damaged.
  1044.  
  1045.             Note that sometimes RAR cannot reset statistics even
  1046.             using this switch. For example, it cannot be done when 
  1047.             compressing one large file split between several volumes.
  1048.             RAR is able to reset solid statistics only between separate 
  1049.             files, but not inside of single file.
  1050.  
  1051.             Ignored, if used to create non-volume archive.
  1052.  
  1053.  
  1054.     -sv-    Create dependent solid volumes
  1055.  
  1056.             Disables to reset solid statistics between volumes.
  1057.  
  1058.             It slightly increases compression, but significantly reduces 
  1059.             chances to extract a part of data if one of solid volumes 
  1060.             in volume set was lost or damaged.
  1061.  
  1062.             Ignored, if used to create non-volume archive.
  1063.  
  1064.  
  1065.     -s-     Disable solid archiving
  1066.  
  1067.  
  1068.     -sfx[name]
  1069.             Create SFX archives. If this switch is used when creating a new
  1070.             archive, a Self-Extracting archive (using a module in file
  1071.             default.sfx or specified in the switch) would be created.
  1072.             In the Windows version default.sfx should be placed in the
  1073.             same directory as the rar.exe, in Unix - in the user's
  1074.             home directory, in /usr/lib or /usr/local/lib.
  1075.  
  1076.             Example:
  1077.  
  1078.             rar a -sfxwincon.sfx myinst
  1079.  
  1080.             create SelF-eXtracting (SFX) archive using wincon.sfx
  1081.             SFX-module.
  1082.  
  1083.  
  1084.     -t      Test files after archiving. This switch is especially
  1085.             useful in combination with the move command, so files will be
  1086.             deleted only if archive had been successfully tested.
  1087.  
  1088.  
  1089.     -ta<date>
  1090.             Process only files modified after the specified date.
  1091.  
  1092.             Format of the date string is YYYYMMDDHHMMSS.
  1093.             It is allowed to insert separators like '-' or ':' to
  1094.             the date string and omit trailing fields. For example,
  1095.             the following switch is correct: -ta2001-11-20
  1096.             Internally it will be expanded to -ta20011120000000
  1097.             and treated as "files modified after 0 hour 0 minutes
  1098.             0 seconds of 20 November 2001".
  1099.  
  1100.  
  1101.     -tb<date>
  1102.             Process only files modified before the specified date.
  1103.             Format of the switch is the same as -ta<date>.
  1104.  
  1105.  
  1106.     -tk     Keep original archive date. Prevents RAR from modifying the
  1107.             archive date when changing an archive.
  1108.  
  1109.  
  1110.     -tl     Set archive time to newest file. Forces RAR to set the date of a
  1111.             changed archive to the date of the newest file in the archive.
  1112.  
  1113.  
  1114.     -tn<time>
  1115.             Process files newer than the specified time period. Format
  1116.             of the time string is:
  1117.  
  1118.             [<ndays>d][<nhours>h][<nminutes>m][<nseconds>s]
  1119.  
  1120.             For example, use switch -tn15d to process files newer
  1121.             than 15 days and -tn2h30m to process files newer than
  1122.             2 hours 30 minutes.
  1123.  
  1124.  
  1125.     -to<time>
  1126.             Process files older than the specified time period. Format
  1127.             of the switch is the same as -tn<time>.
  1128.  
  1129.  
  1130.     -u      Update files. May be used with archive extraction or creation.
  1131.             The command string "a -u" is equivalent to the command 'u', you
  1132.             could also use the switch '-u' with the commands 'm' or 'mf'. If
  1133.             the switch '-u' is used with the commands 'x' or 'e', then files
  1134.             not present on the disk and files newer than their copies on the
  1135.             disk would extracted from the archive.
  1136.  
  1137.  
  1138.     -v<size>[k|b|f|m|M]
  1139.             Create volumes with size=<size>*1000 [*1024 | *1].
  1140.             By default this switch uses <size> as thousands (1000) of bytes
  1141.             (not 1024 x bytes). You may also enter the size in kilobytes
  1142.             using the symbol 'k', in bytes using the symbol 'b',
  1143.             in megabytes - 'm', in millions of bytes - 'M' or select
  1144.             one of several predefined values using the symbol 'f'
  1145.             following the numerical value. Predefined values can be
  1146.             360, 720, 1200, 1440 or 2880 and replaced with corresponding
  1147.             floppy disk size.
  1148.  
  1149.             If the size is omitted, autodetection will be used.
  1150.  
  1151.             If volumes are created on removable media, then after
  1152.             the first volume has been created, user will be prompted
  1153.             with:
  1154.  
  1155.               Create next volume: Yes/No/All
  1156.  
  1157.             At this moment in time, you should change the disks. Answering
  1158.             'A' will cause all volumes to be created without a pause.
  1159.  
  1160.             By default RAR volumes have names like 'volname.partNNN.rar',
  1161.             where NNN is the volume number. Using -vn switch it is 
  1162.             possible to switch to another, extension based naming scheme,
  1163.             where the first volume file in a multi-volume set has
  1164.             the extension .rar, following volumes are numbered from .r00
  1165.             to .r99.
  1166.  
  1167.             When extracting or testing a multi-volume archive you must use
  1168.             only the first volume name. If there is no next volume
  1169.             on the drive and the disk is removable, the user will be
  1170.             prompted with:
  1171.  
  1172.              Insert disk with <next volume name>
  1173.  
  1174.             Insert the disk with the correct volume and press any key.
  1175.  
  1176.             If while extracting, the next volume is not found and volumes
  1177.             are placed on the non-removable disk, RAR will abort with
  1178.             the error message:
  1179.  
  1180.              Cannot find <volume name>
  1181.  
  1182.             Archive volumes may not be modified. The commands 'd', 'f', 'u',
  1183.             's' cannot be used with Multi-volume sets. The command 'a' may
  1184.             be used only for the creation of a new multi-volume sequence.
  1185.  
  1186.             It is possible, although unlikely, that the file size, of a file
  1187.             in a multi-volume set, could be greater than it's uncompressed
  1188.             size. This is due to the fact that 'storing' (no compression if
  1189.             size increases) cannot be enabled for multi-volume sets.
  1190.  
  1191.             Archive volumes may be Self-Extracting (SFX). Such an archive
  1192.             should be created using both the '-v' and '-sfx' switches.
  1193.  
  1194.             Example:
  1195.  
  1196.             create archive in volumes of fixed size:
  1197.  
  1198.             rar a -s -v1440 floparch.rar *.*
  1199.  
  1200.             will create solid volumes of size 1440000 bytes.
  1201.  
  1202.  
  1203.     -vd     Erase disk contents before creating volume
  1204.  
  1205.             All files and directories on the target disk will be erased
  1206.             when '-vd' is used.  The switch applies only to removable
  1207.             media, the hard disk cannot be erased using this switch.
  1208.  
  1209.  
  1210.     -ver[n] File version control
  1211.  
  1212.             Forces RAR to keep previous file versions when updating
  1213.             files in the already existing archive. Old versions are
  1214.             renamed to 'filename;n', where 'n' is the version number.
  1215.  
  1216.             By default, when unpacking an archive without the switch
  1217.             -ver, RAR extracts only the last added file version, which
  1218.             name does not include a numeric suffix. But if you specify
  1219.             a file name exactly, including a version, it will be also
  1220.             unpacked. For example, 'rar x arcname' will unpack only
  1221.             last versions, when 'rar x arcname file.txt;5' will unpack
  1222.             'file.txt;5', if it is present in the archive.
  1223.  
  1224.             If you specify -ver switch without a parameter when unpacking,
  1225.             RAR will extract all versions of all files matched to entered
  1226.             file mask. In this case a version number is not removed from
  1227.             unpacked file names. You may also extract a concrete file
  1228.             version specifying its number as -ver parameter. It will tell
  1229.             RAR to unpack only this version and remove a version number
  1230.             from file names. For example, 'rar x -ver5 arcname' will
  1231.             unpack only 5th file versions.
  1232.  
  1233.  
  1234.     -vn     Use the old style volume naming scheme
  1235.  
  1236.             By default RAR volumes have names like 'volname.partNNN.rar',
  1237.             where NNN is the volume number. Using -vn switch it is 
  1238.             possible to switch to another, extension based naming scheme,
  1239.             where the first volume file in a multi-volume set has
  1240.             the extension .rar, following volumes are numbered from .r00
  1241.             to .r99. It may have sense, if you are going to unpack
  1242.             an archive under the plain MS DOS, which does not allow
  1243.             more than one dot in a file name.
  1244.  
  1245.  
  1246.     -vp     Pause before each volume
  1247.  
  1248.             By default RAR asks for confirmation before creating or 
  1249.             unpacking next volume only for removable drives.
  1250.             This switch forces RAR to ask such confirmation always.
  1251.             It can be useful if disk space is limited and you wish
  1252.             to copy each volume to another media immediately after
  1253.             creating.
  1254.  
  1255.  
  1256.     -w<p>   Assign work directory as <p>. This switch may be used to assign
  1257.             the directory for temporary files.
  1258.  
  1259.  
  1260.     -x<f>   Exclude specified file <f>, wildcards may be used both
  1261.             in the name and file parts of file mask. You may specify
  1262.             the switch '-x' several times:
  1263.  
  1264.             Examples:
  1265.  
  1266.             1) rar a -r -x*.bak -x*.rar rawfiles
  1267.  
  1268.             *.bak and *.rar files will not be added to rawfiles
  1269.  
  1270.             2) rar a -r -x*\temp\* savec c:\*
  1271.  
  1272.             compress all files on the disk c: except those in temp folders
  1273.  
  1274.  
  1275.     -x@<lf> Exclude files using specified list file.
  1276.  
  1277.             Example:
  1278.  
  1279.             rar a -x@exlist.txt arch *.exe
  1280.  
  1281.  
  1282.     -y      Assume Yes on all queries.
  1283.  
  1284.  
  1285.     -z<f>   Read archive comment from file <f>.
  1286.  
  1287.  
  1288.  Limitations
  1289.  ~~~~~~~~~~~
  1290.  
  1291.     Pathname is limited to 259 symbols.
  1292.  
  1293.     Maximum archive comment length is 62000 bytes.
  1294.  
  1295.     Command limitations:
  1296.  
  1297.     The commands 'd','u','f','c','cf' will not operate with archive
  1298.     volumes.
  1299.  
  1300.     The command 'a' cannot be used to update an archive volume, only to
  1301.     create one.
  1302.  
  1303.  
  1304.  Exit values
  1305.  ~~~~~~~~~~~
  1306.  
  1307.     RAR exits with a zero code (0) in case of successful operation. The exit
  1308.     code of non-zero means the operation is cancelled due to error:
  1309.  
  1310.      255   USER BREAK       User stopped the process
  1311.  
  1312.        8   MEMORY ERROR     Not enough memory for operation
  1313.  
  1314.        7   USER ERROR       Command line option error
  1315.  
  1316.        6   OPEN ERROR       Open file error
  1317.  
  1318.        5   WRITE ERROR      Write to disk error
  1319.  
  1320.        4   LOCKED ARCHIVE   Attempt to modify an archive previously locked
  1321.                             by the 'k' command
  1322.  
  1323.        3   CRC ERROR        A CRC error occurred when unpacking
  1324.  
  1325.        2   FATAL ERROR      A fatal error occurred
  1326.  
  1327.        1   WARNING          Non fatal error(s) occurred
  1328.  
  1329.        0   SUCCESS          Successful operation (User exit)
  1330.  
  1331.  
  1332.  Glossary
  1333.  ~~~~~~~~
  1334.  
  1335.     Archive      Special file containing one or more files optionally
  1336.                  compressed and/or encrypted.
  1337.  
  1338.     Compression  A method of encoding data to reduce it's size.
  1339.  
  1340.     CRC          Cyclic Redundancy Check. Mathematical method calculating
  1341.                  special checking information for data validity.
  1342.  
  1343.     SFX          Archive module used to extract files from when executed.
  1344.                  (SelF-eXtracting module), usually in the form of a .EXE
  1345.                  file.
  1346.  
  1347.     Solid        An archive packed using a special compression method which
  1348.                  sees all files as one continuous data stream. Particularly
  1349.                  advantageous when packing a large number of small files.
  1350.  
  1351.     Volume       Part of a split archive. Splitting an archive to volumes
  1352.                  allows storing them on diskettes. Solid volumes must be
  1353.                  extracted starting from first in sequence.
  1354.  
  1355.  
  1356.  
  1357.  Copyrights
  1358.  
  1359.     (c) 1993-2002 Eugene Roshal
  1360.  
  1361.  
  1362.  
  1363.