From 2ff4550d4b998c62f889be77b607e9cf12e1af1e Mon Sep 17 00:00:00 2001 From: Marian Beermann Date: Wed, 26 Jul 2017 10:40:35 +0200 Subject: [PATCH] docs: tar: tarpipe example --- docs/usage/tar.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/usage/tar.rst b/docs/usage/tar.rst index 3ef38e164..3b63afb4d 100644 --- a/docs/usage/tar.rst +++ b/docs/usage/tar.rst @@ -16,3 +16,6 @@ Examples # export a gzipped tar, but instead of storing it on disk, # upload it to a remote site using curl. $ borg export-tar ... --tar-filter="gzip" - | curl --data-binary @- https://somewhere/to/POST + + # remote extraction via "tarpipe" + $ borg export-tar /path/to/repo::Monday - | ssh somewhere "cd extracted; tar x"