Email or username:

Password:

Forgot your password?
Top-level
Elias Mårtenson

@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 -
1 comment
Darius Kazemi

@loke yeah I mention that in the follow-up

Go Up