If my first command output is 5 lines:
lpar1,1024,2048
lpar2,1024,2048
lpar3,2048,4096
lpar4,2048,8192
lpar5,512,1024
Now I execute second command which gives me another 5 lines
1,2,3
2,3,4
3,4,5
4,5,6
5,6,7
I want to add second command's output so it will all be in one line, like this:
lpar1,1024,2048,1,2,3
lpar2,1024,2048,2,3,4
lpar3,2048,4096,3,4,5
lpar4,2048,8192,4,5,6
lpar5,512,1024,5,6,7
How is this possible to do?
Thanx