Hi,
Is it possible in Awk to read multiple files at once so that awk return the concatenation of every first line, second line, third line, etc? For example, suppose file "File01" contains:
1
2
3
4
file "File02" contains:
Dog
Cat
Bird
Snake
Then, I want to ouptut
1 Dog
2 Cat
3 Bird
4 Snake
Can this be done? If not, does anybody knows another tool that can do such a trick?
Thanks
Is it possible in Awk to read multiple files at once so that awk return the concatenation of every first line, second line, third line, etc? For example, suppose file "File01" contains:
1
2
3
4
file "File02" contains:
Dog
Cat
Bird
Snake
Then, I want to ouptut
1 Dog
2 Cat
3 Bird
4 Snake
Can this be done? If not, does anybody knows another tool that can do such a trick?
Thanks