I need to copy some big (10 - 20Gb) files between two systems. To reduce network traffic I want to compress them in line. I'm looking at something like
but it doesn't want to work like that. Can anyone give me any pointers.
Thanks
Columb Healy
Code:
ssh remote_host "gzip -c filename" | gzip -dc >> filename
Thanks
Columb Healy