|
If you and your server are NIX based you can pipe rsync through ssh to copy/ update your files from one machine to the other.
rsync -avp -e "ssh" /folder/ user@server:/path/to/put/it/on/the/server/
NOTE: rsync will copy fulders and sub folders along with files inside those folders. So you need only copy your Doc Root folder and all inside will be copied too.
rsync also takes a look at the files and will only update/ copy files with a newer timestamp. Do a man rsycn for full docs.
If you only have ssh and are windows based then you will more than likely not have scp (ssh tool) and would then have to pipe ftp through ssh (which your ftp client can manage for you).
Ibbo
Last edited by ibbo; 11-23-2006 at 09:21 AM..
|