Script to compare 2 files and prints difference as output sidebyside


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script to compare 2 files and prints difference as output sidebyside
# 8  
Old 01-13-2013
Linux sdiff

you can use sdiff, this does what you want...
# 9  
Old 01-14-2013
Thanks Bipinajith. your idea does works very well but my only concern is in output display i am getting even "/n". so am bit confussed here does it considering "/n" as well while comparing.

output looks like this :
Code:
./cmpconfig.sh OLD_FILE NEW_FILE
Line 1 is different:
OLD_FILE: netip :01.99.22.10 NEW_FILE: netip:11.88.23.11\n
Line 2 is different:
OLD_FILE: username :herty NEW_FILE: username : mmerty\n
Line 3 is different:
OLD_FILE: component : sds mgm tth NEW_FILE: \n
Line 4 is different:
OLD_FILE:  NEW_FILE: link file : gge\n
Line 5 is different:
OLD_FILE: link file :  NEW_FILE: symbol : £$ %$\n
Line 6 is different:
OLD_FILE: symbol : £$ %$ NEW_FILE: \n


Moreover, output shouldn't have displayed Line 5 and 6, since both line values are same. Even don't want to display \n at the end. Could you please tell me how to avoid this ?

Many Thanks
Optimus81

Last edited by Optimus81; 01-14-2013 at 05:59 AM..
# 10  
Old 01-14-2013
Use -e option with echo command to enable interpretation of the backslash-escaped characters.

RudiC mentioned in earlier post that diff commands syncs input lines. So I recommend using it to resolve issue with line 5 & 6.
This User Gave Thanks to Yoda For This Post:
# 11  
Old 01-15-2013
Thanks bipinajith and to everyone.

diff or sdiff will work as well but using sdiff -s opition, we won't get the output as required.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script which telnets to a device, runs commands and prints output to a file

I am connecting to a device using telnet, I want my script to perform certain commands : ie- show device , show inventory..etc and write the output it sees from the terminal to a file. this is what I have got : #!/usr/bin/expect -- set running 1 spawn telnet <ip address> expect ... (1 Reply)
Discussion started by: samantha123
1 Replies

2. Shell Programming and Scripting

Compare two text files and output difference

Hi experts, I am trying to compare two text files and output the difference to another file. I'm not strictly looking for differences in text but additional text at the end of one file that isn't in another, so basically comparing the file 2 against file 1 and printing any additional text to... (9 Replies)
Discussion started by: martin0852
9 Replies

3. Shell Programming and Scripting

compare multiple files and get the difference

Hi all, i have 50 files .data should be same in these 50 files , so my task is to find the difference. i need a logic , which finds difference between all files and print in output file with file name where it found that difference . i tried below logic , but its not giving me what i want. let... (2 Replies)
Discussion started by: deepakiniimt
2 Replies

4. Shell Programming and Scripting

Compare two files and output difference, by first field using awk.

It seems like a common task, but I haven't been able to find the solution. vitallog.txt 1310,John,Hancock 13211,Steven,Mills 122,Jane,Doe 138,Thoms,Doe 1500,Micheal,May vitalinfo.txt 12122,Jane,Thomas 122,Janes,Does 123,Paul,Kite **OUTPUT** vitalfiltered.txt 12122,Jane,Thomas... (2 Replies)
Discussion started by: charles33
2 Replies

5. UNIX for Advanced & Expert Users

Shell Script to compare xml files and print output to a file

All, PLease can you help me with a shell script which can compare two xml files and print the difference to a output file. I have attached one such file for you reference. <Group> <Member ID=":Year_Quad:41501" childCount="4" fullPath="PEPSICO Year-Quad-Wk : FOLDER.52 Weeks Ending Dec... (2 Replies)
Discussion started by: kanthrajgowda
2 Replies

6. UNIX for Dummies Questions & Answers

compare / difference between sub-sections of files

Hi there, I'm sure this question has been asked many times but I can't find any posts with information. How can I check the differences between say lines 20 - 200 in file1 and lines 420 - 600 in file2? Thanks in advance for any help! js (2 Replies)
Discussion started by: js8765
2 Replies

7. Shell Programming and Scripting

Compare two columns in two files and print the difference

one file . . importing table employee 119 . . importing table jobs 1 2nd file . . importing table employee 120 . . importing table jobs 1 and would like... (2 Replies)
Discussion started by: jhonnyrip
2 Replies

8. UNIX for Dummies Questions & Answers

Compare Files and Output Difference

I have to compare two files for any differences, then output the lab and question number for any differences. This is what I currently have: diff lab2.txt lab2answer.txt > lab2compare.txt Though the output doesn't have to be sent to a .txt (or any sort of log), I found that easier, at least... (2 Replies)
Discussion started by: Joesgrrrl
2 Replies

9. Shell Programming and Scripting

script to compare first column of two files and find difference

Hi, I want to write a script which will compare the 1st column of both the files and will give the difference. e.g:- my 1st file contains: 89 /usr 52 /usr/local 36 /tmp 92 /opt 96 /home 27 /etc/opt/EMCom 1 ... (3 Replies)
Discussion started by: adityam
3 Replies

10. Shell Programming and Scripting

to compare two files and to print the difference

suppose one file P1168S P2150L P85L Q597R R1097C Another file P2150L P85L Q597R R1097C R1379C R1587K Then output shud be R1379C R1587K thanks (5 Replies)
Discussion started by: cdfd123
5 Replies
Login or Register to Ask a Question