@darius The way I usually copy an entire directory from one machine to another is using an ssh pipe:
ssh source-machine 'cd /foo && tar cf - source' | tar xf -
Top-level
@darius The way I usually copy an entire directory from one machine to another is using an ssh pipe:
1 comment
|
@loke yeah I mention that in the follow-up