I need to backup a website, but I am working within size constraints. I've tried the old
tar -cpzf backup.tar.gz *
but there isn't enough free space on the host to write the file. I have a few other servers that have enough space and that support SSH though.
How would I redirect the output of the tar command (using >) to another server?
If this isn't feasible, is there a better way to do this aside from just using up a ton of bandwidth by SSHing into the other server and from there using FTP over SSH to download all the files and tarball them up?