home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / gnu / utils / bug / 2451 < prev    next >
Encoding:
Internet Message Format  |  1993-01-25  |  1.2 KB

  1. Path: sparky!uunet!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!cis.ohio-state.edu!twinsun.COM!eggert
  2. From: eggert@twinsun.COM (Paul Eggert)
  3. Newsgroups: gnu.utils.bug
  4. Subject: Re: Patch + RCS = ?
  5. Date: 25 Jan 1993 20:13:15 -0500
  6. Organization: Twin Sun Inc, El Segundo, CA, USA
  7. Lines: 20
  8. Sender: daemon@cis.ohio-state.edu
  9. Approved: bug-gnu-utils@prep.ai.mit.edu
  10. Distribution: gnu
  11. Message-ID: <bkMaDhok@twinsun.com>
  12. References: <NEAL.93Jan22151815@neal.ctd.comsat.com>
  13.  
  14. neal@ctd.COMsat.COM (Neal Becker) writes:
  15.  
  16.    It is easy enough if you only have one directory, then you just use
  17.    rcsdiff.  The only problem is, rcsdiff doesn't have a -r switch!  So,
  18.    what about making a patch from multiple directories?
  19.  
  20. A simple way is the (Bourne) shell command:
  21.     rcsdiff `
  22.         find . -name '*,v' -print |
  23.         sed 's|,v$||; s|RCS/||' |
  24.         sort
  25.     `
  26. For a more complete solution, you can use CVS (also distributed by the FSF).
  27.  
  28.    Also, what's the status of rcsclean in 5.6?
  29.  
  30. The same as in earlier versions of RCS: it's experimental.
  31. The source is available, but the program is not installed by default.
  32. Please send bug reports or questions to rcs-bugs@cs.purdue.edu.
  33.  
  34.