I know is possible to tar and upload with:
- tar -zcvf - source | rclone rcat remote:destination.tar
we can extract a file with:
- rclone cat remote:source.tar | tar zxf -
Unfortunately we can't just tar a remote directory or extract to a remote directory. I was looking at libarchive and the minitar example and I imagine adding libarchive support would not be that complicated. Having something like:
- rclone tar --tar-format tar.gz remote:source/ remote:destination.tar.gz
- rclone untar remote:source.tar remote:destination/