How can you copy a directory to another system with compression?
tar -ssh [email protected] /bin/newfile
tar cvzf - /wwwdata | ssh [email protected] "dd of=/backup/wwwdata.tar.gz"
scp -r directory [email protected]:/tmp
You can't compress the stream