I have one file that has list of Ids like
File1.csv
123456
1234234
2324324
325435345
and other file structure is like this:
File2.csv
1234234,asadasdas!w2eaesfd+smakdnjads,"points-ka"
2131231,sadfasfa990-0;;'.sadsadsada,"points-ka"
2324324,asadasdas!w2eaesfd+smasdasdfadewe,"points-ka"
5434234234,adasdfsfhguse38873h78hu8i8377&*&*,"points-ka"
Now, I want to join the files using this command
join -t, file1.csv file2.csv
but this is not returning any output where am I going wrong?
Required Output:
1234234,asadasdas!w2eaesfd+smakdnjads,"points-ka"
2324324,asadasdas!w2eaesfd+smasdasdfadewe,"points-ka"