Re: [solved] Backup home directory with rsync

2010-10-02 Thread Alberto Luaces
Just a little trick... Rodolfo Medina writes: > $ rsync -vrtu --delete --exclude='/.*' . 192.168.0.2:/home/rodolfo This is equivalent: rsync -vrtu --delete --exclude='/.*' . rodo...@192.168.0.2: or just rsync -vrtu --delete --exclude='/.*' . 192.168.0.2: if you are already `rodolfo' on yo

[solved] Backup home directory with rsync (was: rsync issue)

2010-10-02 Thread Rodolfo Medina
Rodolfo Medina writes: > I wish to copy all my home directory into another machine with the --delete > option, but: > > 1) I dont't want hidden files, i.e.: `.*' to be copied; > > 2) on the other hand, there are some symlinks, beginning with `.', that I >want to be copied. > > The --exclude o