Comparison of 2 csv file using shell script

Viewed 14
Shell Script - Having 2 CSV file , Compare column A with both file column B having different value require output CSV have Matching column A , column B from CSV1 , column B from CSV2 

Ex CSV1 data - column A , column B

ABC , 2 DFC , 4 AHZ , 5 YQA , 6

CSV2 data - column A , column B

ABC , 3 DFC , 5 AHZ , 6 XYS , 7

OUTPUT CSV

ABC , 2 , 3 DFC , 4 , 5 AHZ , 5 , 6 YQA , 6 , XYS , , 7

0 Answers
Related