• 1-888-289-2246
  • 24x7x365 Presence

How to use diff and patch


We’ll learn the three things below, as follows:-

1) Differentiating between two files and redirecting the differences into a new file.
2) Creating a patch file with the diff command utility.
3) Updating the file with patch.

diff => diff is a Unix utility showing the difference between two files which are almost similiar by virtue of their contents.

patch => patch is a Unix utility which is used for applying the differences between two files to make them similiar or the same by virtue of their contents.

1) With the diff command utiliy we can show the difference between two files on the screen or can also redirect them into a file which will create a patch for making the target file the same as the source file.

i) To get the output on the screen between two files, use the command:-

diff abc_file.txt xyz_file.txt

ii) To redirect the difference between two files into one file, use the command below:-

diff abc_file.txt xyz_file.txt  > diff_file.txt

2) Now, creating a patch file with the diff command utility is as below:-

diff -uN orig_file new_file > patch.orig_file

3) Applying the file with patch

patch -u new_file patch.orig_file

and then when you check new_file, it’ll have all the changes done and it’ll have the same contents as orig_file.txt.

Using and applying a patch is the quickest way to do many changes with just one command, when you need to change multiple files for the same changes. That’s all.

]]>


Leave a Reply

Your email address will not be published. Required fields are marked *