|
|
|
|
|
by timrod
5254 days ago
|
|
if you're piping the output of tar, instead of using "tar f -", you can leave off the f argument (since you don't want to specify a file anyway) and tar will default to stdin/stdout: $ tar cz foo | ssh remote "cd /where/to/unpack && tar xz"
|
|
IOW, specify "f -". :-)