compare – 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

Php – Operators

[rps-include post=6522] We have almost learned the variables and related types. But just variables do not enough to create useful applications. We generally need to operate over these variables and data. Operators are a way to operate on variable and data. For example if we need to sum two integer variables we should use sum … Read more

Linux Bash If-Else Conditionals Tutorial with Examples

Linux Bash If-Else Conditionals Tutorial with Examples

If-Elif operators are used to designing the flow of the bash script. We can change the flow according to given conditions with If-Elif . If-Else is one of the most used keywords or structures in Bash in order to make a different execution path according to the situation. For example, if given process ID or programs executes … Read more

Python If .. Elif .. Else Statements and Conditionals

Decision making one of the fundamentals operations in programming languages and applications. We mostly use decisions to implements applications logic. The primary mechanism for decisions in Python is if..elif..else keywords. We can simple call them if-else . In this tutorial we will look different aspects and usage  examples of if-else. If If is used to check whether given … 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

Linux Bash test Command Tutorial With Examples

Bash have programmatic features which gives system administrators a lot of abilities. One of them is test command which will check given conditions and return logic results like true or false . There are a lot of different check functions where we will look most popular and needed ones.  Syntax test EXPRESSION test [ EXPRESSION ] [ ] … 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