home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / arc / arce31c.lzh / ARCE.DOC < prev   
Text File  |  1988-02-06  |  9KB  |  421 lines

  1.  
  2.  
  3.   ARCE Command                        Version 3.1c
  4.   ------------                        Feb 06, 1988
  5.  
  6.  
  7.   Purpose:  Use ARCE to extract files from an ARC archive file.
  8.  
  9.   Format:
  10.  
  11.     ARCE  [d:][path]filename.ext  [filespecs...] [d:outpath]
  12.                       [/R]
  13.                       [/Q]
  14.                       [/P]
  15.                       [/T]
  16.                       [/Gpassword]
  17.  
  18.   Remarks:
  19.  
  20.     The drive and path names are optional.    If omitted, the  current
  21.     drive and path name is used.
  22.  
  23.     The filename must be  supplied.  The extension defaults  to ARC.
  24.     All files matching the supplied filename are processed.  The ARC
  25.     filename may contain the * and ? wildcard characters.
  26.  
  27.     If  no    filespecs  are     supplied,  all  files    are   extracted.
  28.     Otherwise, only those ARC members  which match one of the  up to
  29.     16 filespecs are extracted.
  30.  
  31.     The extracted files  may be placed  on another drive,  and/or in
  32.     another subdirectory by following the optional filespecs with  a
  33.     drive designator and/or path name.
  34.  
  35.     If  the  file  being  extracted  already  exists,  you are asked
  36.     whether or not you want to over-write it.  You may use the |  /R
  37.     option to bypass this prompt.  Use a Y followed by the |  return
  38.     key to over-write the file.
  39.  
  40.     Use the /Q option to suppress alarm sounds, beeps, and bells.
  41.  
  42.     Use  the  /P  option  to  write  the  extracted files to the DOS
  43.     standard output  file.    With  /P, you  may pipe  or redirect the
  44.     output.  An initial line feed  is added to the beginning  of the
  45.     output file.
  46.  
  47.     Use the /T option to test the archive's integrity. No files will
  48.     be extracted.
  49.  
  50.     If the file was encrypted, use the /G option to supply the  same
  51.     password as was used to create the file, e.g. /GSECRET.
  52.  
  53.  
  54.  
  55.  
  56.  
  57.     ARCE 3.1c, Copyright (c) 1986-88, Wayne Chin and Vernon D. Buerg.
  58.     ALL RIGHTS RESERVED.
  59.  
  60.  
  61.  
  62.   ARCE Command                        Version 3.1c
  63.   ------------                        Feb 06, 1988
  64.  
  65.  
  66.  
  67.             Examples
  68.             --------
  69.  
  70.     o  Extract all file from TEST.ARC onto the current drive:
  71.  
  72.           ARCE TEST
  73.  
  74.     o  Extract only file with  an extension of .ASM from the archive
  75.        SOURCE.ARC on drive B and in subdirectory SAVE:
  76.  
  77.           ARCE B:\SAVE\SOURCE *.ASM
  78.  
  79.     o  Extract  all  files    from  all  ARC files in the subdirectory
  80.        called TEST on drive C:
  81.  
  82.           ARCE C:\TEST\*
  83.  
  84.     o  Extract  all  files    from  PROGA.ARC  and  place the files in
  85.        subdirectory OLD on drive B:
  86.  
  87.           ARCE PROGA.ARC B:\OLD
  88.  
  89.     o  Extract all files with an extension of .COM and .EXE from the
  90.        archive PROGS.ARC in directory NEW\WORK on drive B, and place
  91.        the    them  in  subdirectory    SAVE\TEST  on  drive  A; replace
  92.        existing file:
  93.  
  94.           ARCE B:\NEW\WORK\PROGS *.COM *.EXE A:\SAVE\TEST /R
  95.  
  96.     o  Extract  the  file  READ.ME    from  the  archive GIZMO.ARC and
  97.        display it on the console instead of writing it to a file:
  98.  
  99.           ARCE GIZMO READ.ME /P
  100.  
  101.     o  Same as above, except  pass the extracted READ.ME file to the
  102.        LIST file viewer:
  103.  
  104.           ARCE GIZMO READ.ME /P | LIST /S
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.   ARCE Command                        Version 3.1c
  123.   ------------                        Feb 06, 1988
  124.  
  125.             Error Messages
  126.             --------------
  127.  
  128.       'filename - premature EOF reading '
  129.  
  130.     Data  is  missing  from  the  archive  file.   The  program   is
  131.     terminated.
  132.  
  133.  
  134.       'filename - unable to set file datestamp'
  135.  
  136.     The file datestamp is set to the current date and time, and  the
  137.     next archive member is processed.
  138.  
  139.  
  140.       'filename - WARNING: file CRC does not match!'
  141.  
  142.     The extracted member  is left on  the output disk,  and the next
  143.     archive member is processed.   The file is probably  invalid but
  144.     is left on the disk for your examination.
  145.  
  146.  
  147.       'Invalid filespec(s)'
  148.  
  149.     The filespec syntax is incorrect.  The filename part may be from
  150.     1  to  eight  characters,  and    may  include the ? or * wildcard
  151.     characters.  The extension may be none to three characters,  and
  152.     may  include  wildcards.   There  is  a  maximum of 16 filespecs
  153.     allowed.  The program terminates.
  154.  
  155.  
  156.       'filename - file already exists. Overwrite it? (y/N) '
  157.  
  158.     The member being extracted already  exists.  If you are using  a
  159.     data  path  utility,  the  file  may  not  actually  be  in  the
  160.     subdirectory be used for output.   Respond with the letter Y  to
  161.     over-write the existing  file, or respond  with the letter  N to
  162.     skip this member and continue to the next.
  163.  
  164.  
  165.       'Abort: Stack overflow'
  166.  
  167.     The member  being extracted  has invalid  data.  The  program is
  168.     terminated.
  169.  
  170.  
  171.       'filename - invalid decode tree count'
  172.  
  173.     The member  being extracted  has invalid  data.  The  program is
  174.     terminated.
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.   ARCE Command                        Version 3.1c
  183.   ------------                        Feb 06, 1988
  184.  
  185.             Error Messages (cont'd)
  186.             --------------
  187.  
  188.  
  189.       'filename - new archive format 7 not yet supported'
  190.  
  191.     Format 7 is a special file compression method used internally by
  192.     SEA,  the  authors  of    ARC.  Processing continues with the next
  193.     archive member.
  194.  
  195.  
  196.       'Unable to open archive > arcname'
  197.  
  198.     The  specified    ARC   archive  file  was   not    found,    or   was
  199.     inaccessible.  The program terminates.
  200.  
  201.  
  202.       'CREATE failed > filename'
  203.  
  204.     There was insufficient directory  space, or a failure  accessing
  205.     the output disk.  The program terminates.
  206.  
  207.  
  208.     'Invalid archive format!'
  209.  
  210.     The archive file data is invalid.  The program terminates.
  211.  
  212.  
  213.       'Incorrect DOS version'
  214.  
  215.     Version  2.0  or  later  of  PC  DOS  must be used.  The program
  216.     terminates
  217.  
  218.  
  219.       'Not enough memory.'
  220.  
  221.     A minimum  of 112k  bytes of  memory is  required.  The  program
  222.     terminates.
  223.  
  224.  
  225.       'I/O error reading from arcname'
  226.  
  227.     An incorrectable error occurred attempting to read data from the
  228.     archive file.  The program terminates.
  229.  
  230.  
  231.       'I/O error writing or disk full > filename'
  232.  
  233.     There was not  enough disk space  to write the    complete archive
  234.     member.   The  partially  extracted  file  is  scratched and the
  235.     program terminates.
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.   ARCE Command                        Version 3.1c
  243.   ------------                        Feb 06, 1988
  244.  
  245.             Error Messages (cont'd)
  246.             --------------
  247.  
  248.  
  249.       'No matching file(s) found'
  250.  
  251.     No archive files were  found that matched the  supplied filename
  252.     specifications.  The program terminates.
  253.  
  254.  
  255.  
  256.       'filename - ERROR: invalid file codes'
  257.  
  258.     An error was detected while attempting to decode a crunched
  259.     file. Either some data bytes are invalid, there are extra
  260.     bytes, or there are bytes missing. The archive is invalid.
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.   ARCE Command                        Version 3.1c
  303.   ------------                        Feb 06, 1988
  304.  
  305.             Version history
  306.             ---------------
  307.  
  308.     1.1 - 1/13/86    -initial release
  309.  
  310.     2.00, 04/08/86    - fine tuning of I/O buffering
  311.  
  312.     2.01-2.05, 4-20 thru 9/9/86
  313.             - improve unsq, correct disk full message
  314.     2.06, 9/17/86    - release from testing
  315.     2.07, from 9/19 - not released
  316.     2.08, 12/31/86 - added /P, /Q; fixed /R with redirection
  317.     2.09, 1/5/87   - correct closing of output if /P used; require return
  318.              (enter key) for over-write prompt
  319.                - add more validity checking of member headers
  320.     2.10, 1/6/87   - correct use out output file specification
  321.     2.11, 1/24/87  - some cosmetics, wrong banner version and date
  322.  
  323.     3.0a, 3/16/87  - added /G for password encryption
  324.                - added /T for integrity checking only
  325.                - correct loop in command line parsing
  326.                - internal optimization
  327.                - make intergity checking more robust
  328.  
  329.     3.0c, 3/23/87  - improve extracting with file selection
  330.                - minor fixes and cosmetic changes
  331.  
  332.     3.0d, 3/29/87  - correction to unsqueeze
  333.  
  334.     3.0e, 4/02/87  - correct loop with invalid archives
  335.                - insure errorlevel non-zero if any errors
  336.                - correct loop in command line processing
  337.  
  338.     3.0f, 5/31/87  - correct false 'disk full' error message when
  339.              using /p (piping) option
  340.                - correct failure to extract all files from a
  341.              garbled (/g) archive
  342.  
  343.     3.1a, 9/10/87  - cosmetic changes
  344.  
  345.     3.1b, 9/16/87  - unsquashing version released
  346.  
  347. |    3.1c, 2/06/88  - lessen memory requirement to 50k
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.   ARCE Command                        Version 3.1c
  363.   ------------                        Feb 06, 1988
  364.  
  365.  
  366.  
  367.             Notices
  368.             -------
  369.  
  370.     ARCE (c) Copyright 1986-1988 by Wayne Chin and Vernon D. Buerg
  371.     ALL RIGHTS RESERVED.
  372.  
  373.     ARCE is free, but it is a copyrighted work and may be distributed only
  374.     pursuant to this license.
  375.  
  376.     Permission is hereby granted to reproduce and disseminate ARCE so long
  377.     as:
  378.  
  379.        (1)    No remuneration of any kind is received in exchange; and
  380.  
  381.        (2)    Distribution is without ANY modification to the contents of
  382.         ARCE.COM and all accompanying documentation and/or support
  383.         files, including the copyright notice and this license.
  384.  
  385.     No copy of ARCE may be distributed without including a copy of this
  386.     license.
  387.  
  388.     Any other use is prohibited without express, written permission in
  389.     advance.
  390.  
  391.  
  392.  
  393.         Vernon D. Buerg
  394.         139 WHite Oak Circle
  395.         Petaluma, CA  94952
  396.  
  397.         CompuServe: 70007,1212
  398.         Data/BBS:   (707) 778-8944
  399.  
  400.  
  401.  
  402.  
  403.     For use by corporations, institutions, or for profit, contact
  404.     System Enhancement Associates for licensing information.
  405.  
  406.            System Enhancement Associates
  407.            21 New Street
  408.            Wayne, NJ 07470
  409.  
  410.  
  411.  
  412.  
  413.  
  414.  
  415.  
  416.  
  417.  
  418.  
  419.  
  420.  
  421.