I have two files like this
file1
a
b
c
file2
0
1
2
I want to output
a,0
b,1
c,2
Appending the two files like this
row(n) of file1 +","+ row(n) file2
for every n, total n is same in both files
I want to know is there any utility in shell which can help me do this, I do not want to use java file read file write for this or any loops. Can it be done using awk?