shell script for column operation# Unix - 噫吁兮,危乎高哉
f*n
1 楼
I have two file, file1 and file2.
the content of file1 is:
a1 b1
a2 b2
a3 b3
and the content of file2 is:
a1 c1
a2 c2
a3 c3
How to write a shell script to obtain a file with data look like:
a1 b1 c1
a2 b2 c2
a3 b3 c3
Thanks in advance
the content of file1 is:
a1 b1
a2 b2
a3 b3
and the content of file2 is:
a1 c1
a2 c2
a3 c3
How to write a shell script to obtain a file with data look like:
a1 b1 c1
a2 b2 c2
a3 b3 c3
Thanks in advance