Hi I have two files containing data: file1:
4,abc
3,xyz
5,fut
6,gfd
file2:
gfd,2.3
xyz,4.5
abc,6.7
fut,3.2
i wish to create a file3 as output file using linux scripting commands:
4,6.7
3,4.5
5,3.2
6,2.3
how do I use FR=NFR etc. awk scripting to do this