home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume4 / fcpio / fcpio.doc < prev    next >
Encoding:
Text File  |  1989-02-03  |  1.4 KB  |  50 lines

  1. PROGRAM:
  2.  
  3.     fcpio -- a fast cpio for seekable devices
  4.  
  5.  
  6. SYNOPSIS:
  7.  
  8.     fcpio [-options] archive-name [extract-pattern1 [ ... extract-patternn]]
  9.  
  10.     Options implemented to date:
  11.  
  12.         x - extract files
  13.         t - table of contents
  14.  
  15.  
  16. DESCRIPTION:
  17.  
  18.     fcpio is a partial cpio (tm Ma Bell) replacement.  It is very useful
  19.     when performing extracts or retrieving a table of contents from a
  20.     disk-resident cpio archive.  This is due to use of seeks to skip over
  21.     unwanted data.  (Our copy of cpio reads through everything as it must
  22.     assume it can't seek.)  Thus, a -t on a 3.3 Meg file runs at output
  23.     (9600 baud) speeds with fcpio but has long pauses with cpio at all the
  24.     long (> 20K) files within the archive.  An extract of a few items is
  25.     also very fast.
  26.  
  27.     The extract patterns do not support wild carding or anything fancy --
  28.     fcpio will extract any files that begin with one of the extract patterns
  29.     (or all files if no extract pattern is specified).
  30.  
  31.  
  32. AUTHOR:
  33.  
  34.     Joe Larson
  35.     Dayton-Hudson Department Store Company
  36.     700 On the Mall
  37.     Minneapolis, Minnesota  55402
  38.  
  39.     612-375-3537
  40.  
  41.  
  42. BUGS:
  43.  
  44.     1. Does not support non-seekable devices (like pipes?)
  45.     2. Does not maintain the files original magic number, UID or GID.
  46.     3. May not handle garbage at the end of the archive terribly well.
  47.         (Our cpio puts an item called "TRAILER!!!" at the end, so fcpio
  48.         equates that with EOF as well as ending on EOF.  Other cpios
  49.         may behave differently....)
  50.