Home » Questions » Computers [ Ask a new question ]

how to compare 2 word file?

how to compare 2 word file?

I've a 2 ms word file and both has almost same content? I just want to see any changes between documents in content. if is there any.

Asked by: Guest | Views: 282
Total answers/comments: 1
bert [Entry]

"I can tell you on Unix/Linux/MacOSX (or using cygwin), using catdoc:

diff -u <(catdoc -xw /path/to/doc1.doc) <(catdoc -xw /path/to/doc2.doc)

It won't give you the formatting diff, just the text and spaces."