Need help regarding comparison between two files through UNIX script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need help regarding comparison between two files through UNIX script
# 8  
Old 07-01-2015
Hi RudiC/Mannu2525 ,
I was also using the sample data which I posted in post#3 .But not sure why in the mismatch details section ,below entries are coming though these entries are not present in sample source/target file.Also I dont need field count in the report.If the below entries can be removed ,then Field lebel Src & Tgt Mismatches should return correct count .

Code:
000101 20
000102 20
000103 20
000104 20

I ran the script like below.
./CompareScrpt1.sh FILE3_S1.txt FILE3_T1.txt

I just the modified file1 and file2 as $1 and $2 in the below mentioned script.
Code:
#!/bin/bash

echo "<<Analysis Report >>"
echo ""

echo "Src & tgt Count Validation"
echo "Source Count : `wc -l < $1`"
echo "Target Count : `wc -l < $2`"

awk -F\| 'BEGIN{ print "Mismatch in line", "Column Name", "Source Data", "Target Data"}
                {for (i=1; i<=NF; i++) arr[i]=$i
                 getline <FN
                 for (i=1; i<=NF; i++)
                                 {if (arr[i] != $i)
                                 print $1,i,arr[i], $i} }
' FN="$1" $2 > output.temp

echo ""
echo "Field lebel Src & Tgt Mismatches"
echo "No of Mismatches : `expr $(wc -l < output.temp) - 1`"
echo ""
echo "Mismatch Details:"
cat output.temp
rm output.temp
exit

After executing the above script ,analysis report is coming like below :
Code:
<<Analysis Report >>

Src & tgt Count Validation
Source Count : 4
Target Count : 4

Field lebel Src & Tgt Mismatches
No of Mismatches : 8

Mismatch Details:
Mismatch in line Column Name Source Data Target Data
000101 6 123455  123456
000101 20
000102 8 24 23
000102 20
000103 2 000004      3
000103 20
000104 6 3401    3400
000104 20

The above analysis report result is not displaying correct result,the analysis report should come like below :

Code:
<<Analysis Report >>

Src & tgt Count Validation
Source Count : 4
Target Count : 4

Field lebel Src & Tgt Mismatches
No of Mismatches : 4

Mismatch Details:
Mismatch in line Column Name Source Data Target Data
000101                6               123455       123456
000102                8               24              23
000103                2               000004       3
000104                6                3401          3400

If possible ,kindly look into the above mentioned issues.Also as I am new to unix script level ,if you kindly explain the block of code(specially the awk part) ,that will be really beneficial for my understanding.Thanks !

---------- Post updated 07-01-15 at 05:18 AM ---------- Previous update was 06-30-15 at 09:08 AM ----------

Hi RudiC/Mannu2525/All ,

I have tested the below mentinoed script for another sample file ,but analysis report does not provide us correct result.Please find below sample source & target file .
source file :
Code:
000001|     1|AQWWW|234,456.00  |     | 123456|     |41|abC| 0|xyZ|     |99900|0.00999|      |1|c|6|S|
000002|     2|11  4|1,234,456.99|     |      0|     |23|   |99|!  |     |00000|0.00000|      |2| |4|#|
000003|     3|!!@#$|0,000,001.10|     |      9|     | 0|XSW|12|  7|     |00100|0.00001|      |0|S|0| |
000004|     4|     |            |     |   3400|     | 2|r7!|72|xY1|     |01200|0.00045|      |9|W|3|2|

target file :

Code:
000001|100001|AQWWW|234,456.00  |     |123456|     |41|abC|00|xyZ|     |99900|0.00999|      |1|c|6|S
000002|000002|11  4|1,234,456.99|     |0|     |23|   |99|!  |     |0|0|      |2| |4|#
000003|000003|!!@#$|0,000,001.10|     |9|     |00|XSW|12|  7|     |100|0.00001|      |0|S|0| 
000004|000004|     |            |     |3400|     |02|r7!|72|xY1|     |1200|0.00045|      |9|W|3|2

script :
Code:
#!/bin/bash

echo "<<Analysis Report >>"
echo ""

echo "Src & tgt Count Validation"
echo "Source Count : `wc -l < $1`"
echo "Target Count : `wc -l < $2`"

awk -F\| 'BEGIN{ print "Mismatch in line", "Column Name", "Source Data", "Target Data"}
                {for (i=1; i<=NF; i++) arr[i]=$i
                 getline <FN
                 for (i=1; i<=NF; i++)
                                 {if (arr[i] != $i)
                                 print $1,i,arr[i], $i} }
' FN="$1" $2 > output.temp

echo ""
echo "Field lebel Src & Tgt Mismatches"
echo "No of Mismatches : `expr $(wc -l < output.temp) - 1`"
echo ""
echo "Mismatch Details:"
cat output.temp
rm output.temp
exit

After executing the above script ,analysis report is coming like below .In the mismatch details section below entries should not come.

000001 20
000002 20
000003 20
000004 20

Code:
<<Analysis Report >>

Src & tgt Count Validation
Source Count : 4
Target Count : 4

Field lebel Src & Tgt Mismatches
No of Mismatches : 5

Mismatch Details:
Mismatch in line Column Name Source Data Target Data
000001 2 100001      1
000001 20
000002 20
000003 20
000004 20

The above analysis report is not displaying correct result .The Report should display like below :

Code:
<Analysis Report >>

Src & tgt Count Validation
Source Count : 4
Target Count : 4

Field lebel Src & Tgt Mismatches
No of Mismatches : 1

Mismatch Details:
Mismatch in line Column Name Source Data Target Data
000001              2                  100001        1

It wud be really helpful if anyone can look into the above mentioned issues.Thanks !

Last edited by STCET22; 07-01-2015 at 07:35 AM.. Reason: added under code tags
# 9  
Old 07-01-2015
Are you aware that file1 has 20 fields whereas file2 has 19? Your awk version might dislike that.
This is what I get running the awk script on your sample files
Code:
<<Analysis Report >>

Src & tgt Count Validation
Source Count : 4
Target Count : 4

Field lebel Src & Tgt Mismatches
No of Mismatches : 1

Mismatch Details :
Key Column Value    Column Name    Source Data    Target Data
000001    2         1    100001

, and, I'm afraid I can't be of any further help.
# 10  
Old 07-01-2015
Hi RudyC ,
Thanks a lot for your reply.Issue got resolved now.

Last edited by STCET22; 07-01-2015 at 10:17 AM.. Reason: Issue got solved now
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Comparison of files

I have the requirement I have two files cat fileA something anythg nothing everythg cat fileB everythg anythg Now i shld use fileB and compare every line at fileA and get the output as something nothing (3 Replies)
Discussion started by: Priya Amaresh
3 Replies

2. Shell Programming and Scripting

UNIX file comparison

I have two files which has component name and version number separated by a space cat file1 com.acc.invm:FNS_PROD 94.0.5 com.acc.invm:FNS_TEST_DCCC_Mangment 94.1.6 com.acc.invm:FNS_APIPlat_BDMap 100.0.9 com.acc.invm:SendEmail 29.6.113 com.acc.invm:SendSms 12.23.65 cat file2 ... (8 Replies)
Discussion started by: rakeshtomar82
8 Replies

3. Shell Programming and Scripting

Comparison between two files through UNIX script

Hi All , As I am new to unix scripting ,I need a help regarding unix scripting .I have two .txt files .One is source file and another is target file.I need a script through which I can compare those two files.I need a automated comparison report in a directory after comparing between source &... (2 Replies)
Discussion started by: STCET22
2 Replies

4. Homework & Coursework Questions

Unix script Unix script which counts no. of files/sub-files

Hi All, For past some days iam trying, which not able to get to..so please help me on this.. My exact requirement is... Step1: Find how many files/sub files exist in /some/path (maybe in multiple path) Step2: Count the no. of files/sub files with their respective size. Step3: Then a file... (0 Replies)
Discussion started by: sam09
0 Replies

5. Solaris

Unix script Unix script which counts no. of files/sub-files

Hi All, For past some days iam trying, which not able to get to..so please help me on this.. My exact requirement is... Step1: Find how many files/sub files exist in /some/path (maybe in multiple path) Step2: Count the no. of files/sub files with their respective size. Step3: Then a file... (1 Reply)
Discussion started by: sam09
1 Replies

6. Shell Programming and Scripting

comparison of 2 files using unix or awk

Hello, I have 2 files and I want them to be compared in a specific fashion file1: A_1200_1250 A_1251_1300 B_1301_1350 B_1351_1400 B_1401_1450 C_1451_1500 and so on... file2: 1210 1305 1260 1295 1400 1500 1450 1495 Now The script should look for "1200" from A_1200_1250 of... (8 Replies)
Discussion started by: Diya123
8 Replies

7. Shell Programming and Scripting

Comparison of two files (sh)

Hi, I have a problem with comparison of two files file1 20100101 20090101 20080101 20071001 20121229 file2 19990112 12 456 7 20011131 19 20100101 2 567 1 987 17890709 123 555 and, sh script needs to compare of these two files and give out to me result: 20100101 2 567 1 987 it... (5 Replies)
Discussion started by: shizik
5 Replies

8. Shell Programming and Scripting

comparison of 2 files

Kindly help on follows. I have 2 files. One file contains only one column of mobile numbers. And total records in a file 12 million. Second file contains 2 columns mobile numbers and balance. and total records 30 million. I want to find out balance of each data in file 1 corresponding to file 2.... (2 Replies)
Discussion started by: kamal_418
2 Replies

9. UNIX for Dummies Questions & Answers

Comparison of 2 files in UNIX

Hi, There are two files in UNIX system with some lines are exactly the same, some lines are not. I want to compare these two files.The 2 files (both the files have data in Column format )should be compared row wise and any difference in data for a particular row should lead to storage of data of... (32 Replies)
Discussion started by: Dana Evans
32 Replies

10. UNIX for Dummies Questions & Answers

Unix comparison

I am very new to Unix. What are the similiarities and differences between ScoUnix and AIX5 if any? Where might i find the information? Which is better? (1 Reply)
Discussion started by: NewGuy100
1 Replies
Login or Register to Ask a Question