|
|
Question : Rsync problem
|
|
rsync -e "ssh -p22" -avz --delete /home/user2/public_html/virtualftp/* user1@*.*.168.26:/home/user1/public_html
Works fine, but --delete argument doesent work
|
Answer : Rsync problem
|
|
rsync -e "ssh -p22" -avz --delete /home/user2/public_html/virtualftp/ user1@*.*.168.26:/home/user1/public_html
correct syntax is to remove the trailing '*' after the local dir.
|
|
|
|
|