Can Eclipse Compare tool be called from command line? I just want to use it as a merge tool from an external tool.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I'm not aware that you can do this out of the box. But you can download the RCP SDK and create a really stripped down version of Eclipse which contains just the compare plugin. That will also help greatly with the startup time. |
|||
|
|
|
Any reason you insist on Eclipse for that? I've used WinMerge for exactly the same purpose (external diff tool). It has built in ability to be called from command-line. Other options: Best graphical source code diff viewer/editor for code comparison and merging? |
|||||||||
|
|
I wanted the same thing so I wrote it: https://github.com/kgilmer/steb From a shell, the following line will open a compare editor comparing f1.txt and f2.txt: steb -c f1.txt f2.txt |
|||
|
|