diff – POFTUT

How To Use windiff To Compare Contents Of Two Files In Windows with Examples?

windiff is a tool used to compare given files contents and print the same and different lines. windiff is provided by Windows SDK Core . So in order to use this tool we need to install Windows SDK Core for different versions. Download and Install windiff windiff can be downloaded from the following links. Windows … Read more

Vim Undo and Redo Operations

While editing text files with vim we can make some little mistakes or want to revert to the previous states. In Microsoft Word there is features rich undo and revert functions. The similar undo and revert functionalities provided by vim too. List Changes In order to revert back we can list changes and related information. … Read more

Python Set Data Structure With Examples

Python provides different structures to hold data. We have all ready looked list and dictionary in this site. Today we will look usage examples and features of python set. Set have same properties and behaviour of mathematical set. Sets have following features unordered means the order is not important and do not expect same order for … Read more

Winmerge Tutorial With Examples To Visual Patch, Diff, Merge

Linux operating system have different tools to find diff and create patches. Windows operating system do not provide any builtin tool for these operations. But there is a 3 party application which can be used easily and freely called Winmerge. Download and Installation The winmerge tool can be downloaded from following link. https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe After download is … Read more

Patch Command Tutorial With Examples For Linux

Patch is a command that is used to apply patch files to the files like source code, configuration. Patch files holds the difference between original file and new file. In order to get the difference or patch we use diff tool. Software is consist of a bunch of source code. The source code is developed by … Read more

Compare Files With Comm Command In Linux

Linux have a lot of tools to compare files. These tools provides a lot of powerful features to meet user needs. But sometimes just simple comparison is enough for some users. comm is a tool for this purpose . Comm only compare files and shows differences in a visual manner. Syntax We will use following syntax … Read more

Linux Diff Command Tutorial with Examples To Compare Two Text File

Linux Diff Command Tutorial with Examples To Compare Two Text File

Comparing files line by line can be done with a tool named diff. There are a lot of different options provided by diff. We will look at the most popular and useful features in this tutorial. Syntax diff has simple syntax. There are options that we will look later and files to be compared. diff … Read more