On Thu, Aug 14, 2008 at 1:15 PM, Pedro Martelletto <[EMAIL PROTECTED]> wrote:
> You're all apparently missing out on a great tool called "GHome Mover" > (http://www.brookepeig.com/ghomemover/). I know the guy said he is > logging in from remote, but it is definitely worth the effort having X > installed on your server and tunneled through SSH just to use this > absolutely revolutionary tool! If you're going outside of base, just use rsync. If you're staying in base, and not using X, abuse tar(1), and ssh(1) tunnels. tar cf - ./* | ssh <host> tar xvf - -C </path/to/destination/dir> or ssh <host> tar cf - </start/dir/> | tar xvf - -C </path/to/dest/dir> The latter may need some adjustment or other switches to remove the patch from the starting directory.