1 Answer
There is a command in linux to compare the files. The command name is diff.
For example: If you are having two files called test1 and test2.
# diff test1 test2
Or else check with vim editor as follows,
# vim -d test1 test2
Your Answer