Unix Shell - duplicate entries - compare files

This is Interesting: Free IT Magazines  
Home > Archive > Unix Shell > September 2006 > duplicate entries - compare files





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author duplicate entries - compare files
tester

2006-09-28, 1:38 am

Hi Gurus,
I need to compare two files which shows me ONLY duplicate entries
(entry common to both files)
i tried "comm" command but it doesn't show me correctly or may be i am
not using it correctly.
Please Help
Regards

Ed Morton

2006-09-28, 1:38 am

tester wrote:
> Hi Gurus,
> I need to compare two files which shows me ONLY duplicate entries
> (entry common to both files)
> i tried "comm" command but it doesn't show me correctly or may be i am
> not using it correctly.
> Please Help
> Regards
>


comm only works on files that are sorted. Sort the files first.

Ed.
Hubble

2006-09-28, 1:38 am

tester wrote:
> Hi Gurus,
> I need to compare two files which shows me ONLY duplicate entries
> (entry common to both files)
> i tried "comm" command but it doesn't show me correctly or may be i am
> not using it correctly.
> Please Help
> Regards


You have to sort the files before using commm. Another simple solution
is to use the -d option of uniq (after sorting, of course):

sort file1 file2 | uniq -d

Hubble.

c00p

2006-09-28, 1:20 pm

have you tried diff? sdiff or diff --side-by-side, etc...

no need to reinvent the wheel

tester wrote:
> Hi Gurus,
> I need to compare two files which shows me ONLY duplicate entries
> (entry common to both files)
> i tried "comm" command but it doesn't show me correctly or may be i am
> not using it correctly.
> Please Help
> Regards


tester

2006-09-28, 7:27 pm



>
> You have to sort the files before using commm. Another simple solution
> is to use the -d option of uniq (after sorting, of course):
>
> sort file1 file2 | uniq -d
>
> Hubble.


Thanks Hubble. it worked....
Regards

Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com