This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Bug diff 2.8.7: Separate dir


On Sun, 6 Mar 2005, Arend-Jan Westhoff wrote:

> Thanks for the explanation. However I don't quite understand this is
> what one would want.

I'll let someone else address most of your points except one:

> It also seems inconsequent if what you say is truely correct and what is
> intended that when I use my file 'a' from my original example and do the
> following:
> 	copy a b
> that then:
> 	diff ./a .\b
> says that the files are completely different, whereas:
> 	diff ./a .\a
> says they are completely equal, while files a and b are character for
> character identical!

diff has an optimization that compares the arguments' inodes, and reports
identity for the files with the same inode.  No matter which slash you
use, they both resolve to the same file (only the metadata may be
different), so the inode is the same.  The inodes for "a" and "b" aren't
the same, so diff goes ahead and does the comparison (which reports the
differences in line endings).  Try "ln a c" and compare "a" with "c" using
your syntax. :-)
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski, Ph.D.
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"The Sun will pass between the Earth and the Moon tonight for a total
Lunar eclipse..." -- WCBS Radio Newsbrief, Oct 27 2004, 12:01 pm EDT

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]