Getting similar lines in two files

Hi,

I need to compare the /etc/passwd files from 2 servers, and extract the users that are similar in these two files. I sorted the 2 files based on the user IDs (UID) (3rd column). I first sorted the files using the username (1st column), however when I use comm to compare the files there is no output listed.

This is the first file :

# cat sortvs1.csv
mastersam:0:MasterSAM user ID, 03072017
root:0:Super-User
daemon:1:
bin:2:
sys:3:
adm:4:Admin
uucp:5:uucp Admin
nuucp:9:uucp Admin
smmsp:25:SendMail Message Submission Program
listen:37:Network Admin
gdm:50:GDM Reserved UID
lp:71:Line Printer Admin
webservd:80:WebServer Reserved UID
postgres:90:PostgreSQL Reserved UID
svctag:95:Service Tag UID
unknown:96:Unknown Remote UID
fdsuser:1001:FDS system user
oracle:40098:
vs:40099:FTP user
Umvsftp:40100:FTP user
crmftp:40101:CRM ftp user
skmmftp:40103:SKMM ftp user
etiger:40104:
fouser:40107:
pmuser:40118:Preventive Maintenance Team
erohsik:40119:Rohan Sikka, Ericsson GNOC
IAN:40124:Ian Chew Yue Yen, umobile
emansab:40134:Manpreet Singh Sabharwal, Ericsson GNOC
ebfhiil:40136:Gaurav Mehra, Ericsson GNOC
nasha:40137:Nasha Baharom, UMobile Developer, 1072015
egi34597:40143:ANAND KUMAR, MO 2nd LA, 31052016
egi35624:40144:Rinki Saha, MO 2nd LA, 31052016
egi37391:40145:Richa Sharma, MO 2nd LA, 31052016
egi40026:40146:AMARNATH BHUNIA, MO 2nd LA, 31052016
eshisea:40147:Seah Shiao Yin, BSCS SME, 31052016
eqsvvvx:40148:Vishal Gupta, Ericsson DRP Project, 13062016
emoaigin:40158:Aigini Navaneethan, Ericsson Sysadmin, 25082016
weiping:40159:Wan Wei Ping, weiping.wan@u.com.my, 28112016
emoazizu:40162:
nobody:60001:NFS Anonymous Access User
noaccess:60002:No Access User
nobody4:65534:SunOS 4.x NFS Anonymous Access User
#

This is the 2nd file :

# cat sortvs2.csv
mastersam:0:MasterSAM User ID, 03072017
root:0:Super-User
daemon:1:
bin:2:
sys:3:
adm:4:Admin
uucp:5:uucp Admin
nuucp:9:uucp Admin
smmsp:25:SendMail Message Submission Program
listen:37:Network Admin
gdm:50:GDM Reserved UID
lp:71:Line Printer Admin
webservd:80:WebServer Reserved UID
postgres:90:PostgreSQL Reserved UID
svctag:95:Service Tag UID
unknown:96:Unknown Remote UID
fdsuser:1001:FDS system user
oracle:40098:
vs:40099:FTP user
Umvsftp:40100:FTP user
crmftp:40101:CRM ftp user
skmmftp:40102:SKMM ftp user
etiger:40103:
fouser:40107:
emorajen:40116:Rajendra Nagireddy, Ericsson GNOC
pmuser:40118:Preventive Maintenance Team
erohsik:40119:Rohan Sikka, Ericsson GNOC
IAN:40125:Ian Chew Yue Yen, umobile
emansab:40134:Manpreet Singh Sabharwal, Ericsson GNOC
ebfhiil:40136:Gaurav Mehra, Ericsson GNOC
nasha:40137:Nasha Baharom, UMobile Developer, 1072015
egi34597:40143:ANAND KUMAR, MO 2nd LA, 31052016
egi35624:40144:Rinki Saha, MO 2nd LA, 31052016
egi37391:40145:Richa Sharma, MO 2nd LA, 31052016
egi40026:40146:AMARNATH BHUNIA, MO 2nd LA, 31052016
eshisea:40147:Seah Shiao Yin, BSCS SME, 31052016
eqsvvvx:40148:Vishal Gupta, Ericsson DRP Project, 13062016
weiping:40158:Wan Wei Ping, weiping.wan@u.com.my, 28112016
emoaigin:40161:
emoazizu:40162:
nobody:60001:NFS Anonymous Access User
noaccess:60002:No Access User
nobody4:65534:SunOS 4.x NFS Anonymous Access User
#

This is the output after comparing both the files (I used comm) :

# comm -12 sortvs1.csv sortvs2.csv
root:0:Super-User
daemon:1:
bin:2:
sys:3:
adm:4:Admin
uucp:5:uucp Admin
nuucp:9:uucp Admin
smmsp:25:SendMail Message Submission Program
listen:37:Network Admin
gdm:50:GDM Reserved UID
lp:71:Line Printer Admin
webservd:80:WebServer Reserved UID
postgres:90:PostgreSQL Reserved UID
svctag:95:Service Tag UID
unknown:96:Unknown Remote UID
fdsuser:1001:FDS system user
oracle:40098:
vs:40099:FTP user
Umvsftp:40100:FTP user
crmftp:40101:CRM ftp user
#

As you can see from the compared output, the list only lists users till the user ID 40101. But if you see the first two files, there are other IDs in it, like 40162. Why does it not list this ID?

Also is it not possible to get the similar names if I sort both the files using username (first column)? Is there any other way to do so? This is because there are some usernames with different UIDs in each server.

Another question is, how (which command to use) to list similar user IDs in multiple files (10 - 15).

I'm a bit surprized that you get any output at all, as I get

comm -12 file1 file2
comm: file 1 is not in sorted order
comm: file 2 is not in sorted order

with your two files.
The reason for emoazizu not being found is the DOS line terminator <CR> (^M, \r. 0x0D) in one file that is missing in the other:

grep emoazizu file[12] | hd
00000000  66 69 6c 65 31 3a 65 6d  6f 61 7a 69 7a 75 3a 34  |file1:emoazizu:4|
00000010  30 31 36 32 3a 0a 66 69  6c 65 32 3a 65 6d 6f 61  |0162:.file2:emoa|
00000020  7a 69 7a 75 3a 34 30 31  36 32 3a 0d 0a           |zizu:40162:..|

Mayhap diff (if the options shown are offered by your version) could help you?

diff -y -b --suppress-common-lines file1 file2
mastersam:0:MasterSAM user ID, 03072017                  |    mastersam:0:MasterSAM User ID, 03072017
skmmftp:40103:SKMM ftp user                      |    skmmftp:40102:SKMM ftp user
etiger:40104:                              |    etiger:40103:
                                  >    emorajen:40116:Rajendra Nagireddy, Ericsson GNOC
IAN:40124:Ian Chew Yue Yen, umobile                  |    IAN:40125:Ian Chew Yue Yen, umobile
emoaigin:40158:Aigini Navaneethan, Ericsson Sysadmin, 2508201 |    weiping:40158:Wan Wei Ping, weiping.wan@u.com.my, 28112016
weiping:40159:Wan Wei Ping, weiping.wan@u.com.my, 28112016    |    emoaigin:40161:

And, what are "similar" names? In a (digital!) IS environment, you have TRUE or FALSE, EQUAL or NOT EQUAL, YES or NO, and that's it. Some commands offer some fuzzyness, like "ignore case", or "ignore unequal space char count", but to find "similarities", there's quite a long way to go. You first have to define "what is similar" (do you need to respect locale features, do you want to accept typographical errors), and then you need to code a program implementing these definitions and rules, as I'm afraid there's not too many of them out of the box...