1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-10 06:03:38 +00:00

docs: tar: tarpipe example

This commit is contained in:
Marian Beermann 2017-07-26 10:40:35 +02:00
parent daa88e07f2
commit 2ff4550d4b

View file

@ -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"