ssh host1 "cd /path/to/files; tar -c ." | ssh host2 "cd /path/to/destination/; tar -x"
tar zcvf - /path/to/files | ssh host "cat > /path/to/data.tar.gz"
tar -cSp --numeric-owner --atime-preserve -f - /home/ | ( cd /mnt/neu/ && tar -xSpv --atime-preserve -f - )