Me respondo a mi mismo, esta es la solucion que encontre y me funciona (aunque no era exactamente lo que buscaba en un principio)
Código unix:
Ver originalfrom host A:
tar -cf - directory | ssh user@hostB "cd target_dir; tar -xf -"
Where directory is the directory you want to move and target_dir is the destination directory on the remote host.