I have two files
File1:
a
b
c
File2:
1
2
3
now I need to combine them to one csv file
a;1
b;2
c;3
As the files are really huge, I would rather not use cat and sed to process the second file. (For smaller files I can use a script). Any Idea ? awk/perl ?