Combine the two files from two Linux servers into one file

Hi Guys,

Can anyone please suggest the commands to combine two files data from two different linux servers .

Reminisce

With combine do you mean concatenate?
Do you use a shared file system like NFS or Microsoft SMB?

File a append the data of file b cat file a >> file b

If the files are on two different servers, you can use rsync combined with cat >> (append mode) to get the deed done.