home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / cpio11ax.zip / README.DOS < prev   
Text File  |  1992-02-22  |  3KB  |  78 lines

  1. # readme. - GNUish MS-DOS cpio                    -*-Text-*-
  2. # Copyright (C) 1990 Free Software Foundation, Inc.
  3. # Copyright (C) 1990 by Thorsten Ohl, ohl@gnu.ai.mit.edu
  4.  
  5. This is GNU cpio version 1.1 for MS-DOS.
  6.  
  7. SOURCE CODE
  8.  
  9. The makefile assumes that you have a copy of the gnulib, which
  10. contains ports of several general purpose (regular expressions,
  11. directory access, filename globbing, etc.) GNU functions for MS-DOS.
  12. You can get it from the same place where you picled up this archive.
  13.  
  14. GNU cpio is known to compile with Microsoft C Version 5.1 or 6.0.
  15. Reports of successful compilation by other compilers (and the
  16. eventually necessary context diffs) are very much appreciated.
  17.  
  18. EXECUTABLE CODE
  19.  
  20. For convenience, ready-to-execute binaries are also provided for those
  21. who do not have the necessary compilers, or do not feel like using
  22. them.  User documentation is usually not provided, at least for now,
  23. beyond the documentation provided in the official GNU distribution.
  24.  
  25. Below is a short excuse for a manpage.
  26.  
  27. Thorsten Ohl
  28. ohl@gnu.ai.mit.edu
  29.  
  30. ============================================================================
  31.  
  32. CPIO(1)                                GNUish-MSDOS
  33.  
  34. NAME
  35.  
  36.     cpio - copy in, copy out, copy pass
  37.  
  38.  
  39. SYNOPSIS
  40.  
  41.     cpio {-o|+create} [-acvBLV] [+reset-access-time] [+portability]
  42.          [+verbose] [+block-size=blocks] [+dereference] [+version]
  43.          < name-list > archive
  44.  
  45.     cpio {-i|+extract} [-cdfmnrtuvBV] [+portability] [+make-directories]
  46.          [+nonmatching] [+preserve-modification-time] [+numeric-uid-gid]
  47.          [+rename] [+list] [+unconditional] [+verbose] [+block-size=blocks]
  48.          [+version] [pattern...] < archive
  49.  
  50.     cpio {-p|+pass-through} [-adlLmuvV] [+reset-access-time]
  51.          [+make-directories] [+link] [+preserve-modification-time]
  52.              [+unconditional] [+verbose] [+dereference] [+version]
  53.          destination-directory < name-list
  54.  
  55.  
  56. OPTIONS
  57.  
  58.     -a, +reset-access-time    Reset access times.
  59.     +block-size n        Set block size to n * 512
  60.     -B            Set block size to 5120.
  61.     -c, +portability    Use the portable format.
  62.     -d, +make-directories    Create directories where needed.
  63.     -f, +nonmatching    Only copy files not matching patterns.
  64.     -i, +extract        Copy-in mode.
  65.     -l, +link        Link files when possible.
  66.     -L, +dereference    Dereference symbolic links.
  67.     -m, +preserve-modification-time   Retain previous file modify times.
  68.     -n, +numeric-uid-gid    Long list owner and group as numbers.
  69.     -o, +create        Copy-out mode.
  70.     -p, +pass-through    Copy-pass mode.
  71.     -r, +rename        Interactively rename.
  72.     -t, +list        Only print a list.
  73.     -u, +unconditional    Replace all!  Unconditionally!
  74.     -v, +verbose        Verbose!
  75.     -V, +version        Print version string.
  76.  
  77. ============================================================================
  78.