tar + zstd, without piping

tar -I "zstd -T10" --exclude='something' -cvf /path/to/dst.tar.zstd source/folder

sending it to a remote host and unpacking there:

tar -I "zstd -T32" -cvf - data/ | pv | ssh root@someserver"tar --zstd -xvf - -C /some/path/where/to/unpack/it"

Leave a Reply

Your email address will not be published. Required fields are marked *

(Spamcheck Enabled)