compare & print lines with 2 requirements

1.compare 90 logs >20 print off with correct figure
2.compare latest log i.e ciscoresets_20120314 against all records not just the 90 (as above) and any lines not matching print as:

NEW:SYDGRE04,10,9 1

(note this number could be 2 or whatever not necessary 1 it could be 2,3 or even 10 as ciscoresets_20120314 file could have seen this line multiple times where as no other file has, if you understand logic)

**must also take into account the count of the latest file i.e ciscoresets_20120314

sample logs...

ciscoresets_20120314
ciscoresets_20120313
ciscoresets_20120312
ciscoresets_20120311
ciscoresets_20120310

cat ciscoresets_20120314
SYDGRE04,10,9
SYDGRE04,10,10
SYDGRE04,10,11
SYDGRE04,10,12
SYDGRE04,10,13
SYDGRE04,10,14
SYDGRE04,10,15
NEPGRE01,10,1
NEPGRE01,10,2
NEPGRE01,10,3
NEPGRE01,10,4
NEPGRE01,10,5
NEPGRE01,10,6
NEPGRE01,10,7
NEPGRE01,10,8
NEPGRE01,10,9
NEPGRE01,10,10
NEPGRE01,10,11
NEPGRE01,10,12
NEPGRE01,10,13
NEPGRE01,10,14
NEPGRE01,10,15
NEPGRE01,10,16

cat ciscoresets_20120313
SYDGRE04,10,1
SYDGRE04,10,2
SYDGRE04,10,3
SYDGRE04,10,4
SYDGRE04,10,5
SYDGRE04,10,6
SYDGRE04,10,7
SYDGRE04,10,8
SYDGRE04,10,9
SYDGRE04,10,10
SYDGRE04,10,11
SYDGRE04,10,12
SYDGRE04,10,13
SYDGRE04,10,14
SYDGRE04,10,15
NEPGRE01,10,4
NEPGRE01,10,5
NEPGRE01,10,6
NEPGRE01,10,7
NEPGRE01,10,8
NEPGRE01,10,9

Hi,

Could you please provide us desire output ?

~ Pravin ~

NEW:	NEPGRE01,10,13			1
NEW:	NEPGRE01,10,14			1
NEW:	NEPGRE01,10,15			1
NEW:	NEPGRE01,10,16			1
NEW:	SYDGRE04,10,1			1
NEW:	SYDGRE04,10,2			1
NEW:	SYDGRE04,10,3			1
NEW:	SYDGRE04,10,4			1
NEW:	SYDGRE04,10,5			1
NEW:	SYDGRE04,10,6			1
NEW:	SYDGRE04,10,7			1
NEW:	SYDGRE04,10,8			1
	NEPGRE01,10,4			2
	NEPGRE01,10,5			2
	NEPGRE01,10,6			2
	NEPGRE01,10,7			2
	NEPGRE01,10,8			2
	NEPGRE01,10,9			2
	SYDGRE04,10,9			2
	SYDGRE04,10,10			2
	SYDGRE04,10,11			2
	SYDGRE04,10,12			2
	SYDGRE04,10,13			2
	SYDGRE04,10,14			2
	SYDGRE04,10,15			2

comparing file ciscoresets_20120314 against ciscoresets_20120313 above is desired output, it is the latest file which needs comparing.
please see post 1 to test code to see if it meets all requirements.