Deprecating scp
Deprecating scp
Posted Jan 25, 2021 12:17 UTC (Mon) by mbunkus (subscriber, #87248)In reply to: Deprecating scp by tconnors
Parent article: Deprecating scp
You can approximate "scp -3" with ssh & tar, without having to use tunnels or anything else, as in:
ssh host1 "tar czf - /path /other/path" | ssh host2 "tar xzfC - /"
