I use the paste command in UNIX to join two or more files.
Example. file1 contains the line x1
file2 contains the line x2
I would do this at the UNIX prompt: paste file1 file2.
The result would be x1 x2.
I can't find a way in Powershell to do same.
Thanks for any help.