Copy only difference (kdiff, winmerge, any diff li

2020-06-03 03:18发布

Is there possibility of copy ONLY difference of two files? Like in winmerge, but, I can't find this optionenter image description here

Just like on this screen- i want to copy only 'yellow part' . Of course I can do that manually, but in big file it's not too funny :-)

6条回答
Rolldiameter
2楼-- · 2020-06-03 03:25

WinMerge has a built-in and simple way to generate such "diff only" files, that they called "patches".

Click on "Tool", then on "Generate Patch...", and enter where you want to store the result:

enter image description here

You will obtain (for your example) the file

4,8c4,8
< HELLO WORLD
< HELLO WORLD
< HELLO WORLD
< HELLO WORLD
< HELLO WORLD
---
> 
> 
> 
> 
> 

That uses the standard, compact way of representing diff and is easy to manipulate.

查看更多
我欲成王,谁敢阻挡
3楼-- · 2020-06-03 03:27

Here is how you do it in WinMerge:

  1. Disable any context lines: [View] > [Context] > [0 Lines].
  2. Select pane of interest: Click on pane.
  3. Select all text: [Edit] > [Select All] or [Ctrl]+[a].
  4. Copy selection: [Edit] > [Copy] or [Ctrl]+[c].
查看更多
可以哭但决不认输i
4楼-- · 2020-06-03 03:28

WinMerge offers the "Copy Left to..." or "Copy right to..." that will copy only the differences to a folder of choice.

查看更多
贼婆χ
5楼-- · 2020-06-03 03:30

There is a free app called DiffMerge.

Note : The option 'Show differences only' will be disabled until you switch to the bottom tab labeled Referenced View(Files as loaded). After that you should be able to use Differences Only view.

Difference with content

Difference only

查看更多
姐就是有狂的资本
6楼-- · 2020-06-03 03:41

In winmerge there is very nice feature- in tools you can generate raport in html by Tools-> Raport. After that operation you can parse generated html- and in that way get only differenece (but maybe it's not simplest solution)

查看更多
Summer. ? 凉城
7楼-- · 2020-06-03 03:44

Most diff tools have a patch generation functionality which can work toward the clipboard, this is mostly what you want as you will get only changed text on left and right side (if you remove the context lines). If you want only those of one side you can easily filter the patch with regard to the first character (removing all lines, using an editor, matching something like ^[+>].*$ to keep removed lines or ^[-<].*$ to keep added lines).

The diff tool in command line will output just that, piped with a grep and one of the above regular expression you are done.

查看更多
登录 后发表回答