简体   繁体   中英

Copy only difference (kdiff, winmerge, any diff like tool)

Is there possibility of copy ONLY difference of two files? Like in winmerge, but, I can't find this option 在此输入图像描述

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 :-)

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:

在此输入图像描述

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.

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.

与内容的差异

差别而已

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].

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)

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.

WinMerge提供“Copy Left to ...”或“Copy right to ...”,它只会将差异复制到所选的文件夹中。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM