Hi all,
I am new to awk command I have the following input file:
rashmi:xyz@1234:zyx:1234;
prashant:xyz@2345:zyx:2345;
and I would like the output in this format:
rashmi prashant
xyz@1234 xyz@2345
zyx zyx
1234 2345
any ideas how to achive using awk.
I have managed to produce
rashmi
xyz@1234
zyx
1234
prashant
xyz@2345
zyx
2345
thanks in advance
I am new to awk command I have the following input file:
rashmi:xyz@1234:zyx:1234;
prashant:xyz@2345:zyx:2345;
and I would like the output in this format:
rashmi prashant
xyz@1234 xyz@2345
zyx zyx
1234 2345
any ideas how to achive using awk.
I have managed to produce
rashmi
xyz@1234
zyx
1234
prashant
xyz@2345
zyx
2345
thanks in advance