home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / UNSHAR.ZIP / UNSHAR.MAN < prev   
Text File  |  1990-07-17  |  1KB  |  36 lines

  1. NAME
  2.      unshar - extract files from shell archive(s)
  3.  
  4. SYNTAX
  5.      unshar [-t] [-b] [-v] [-xfile] [file(s)]
  6.  
  7. OPTIONS
  8.      Options are processed by getopts(3).
  9.  
  10.      -t      Do not extract files, just list the files in the
  11.              archive(s).
  12.  
  13.      -b      Extract files from the archive(s) brutally, with no
  14.              regard at all to things such as testing if the file
  15.              exists, or chmoding the file etc. Currently this is
  16.              the only method supported, but other methods would
  17.              be easy to add.
  18.  
  19.      -v      Be verbose. Used only for debugging purposes.
  20.  
  21.      -xfile  Extract the named file from the shell archive. If
  22.              the -x flag is used, only those files specified will
  23.              be extracted.
  24.  
  25. DESCRIPTION
  26.      Unshar extracts files from one or more shell archives, and
  27.      places them in the current directory. It does no forking to
  28.      achieve this, and is relatively fast.  If no file name is
  29.      given as an agrumemt, unshar will use standard input.  At
  30.      the moment unshar is very simple-minded, and does its
  31.      extraction rather brutally. The code has been written to
  32.      allow more intelligent unarchiving methods to be added.
  33.  
  34. SEE ALSO
  35.      shar(1), sh(1).
  36.