home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / gnuish / cpio11.arc / readme < prev   
Text File  |  1990-09-24  |  3KB  |  90 lines

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