Brandon Valentine wrote: > % rsync -a /my/local/dir/ [EMAIL PROTECTED]:/my/remote/dir/ >
This is most of what you need. The -a option turns on most of the useful transfer options. Other useful options I commonly use are z - Compress the data. Handy if you have a lot of text or otherwise compressible files and are transferring over a slow connection i - Itemize changes. Not so useful if you're automating things v - Verbose. Again, not quite so useful if you're automating things. You may want to pipe the output somewhere though --delete - delete items that don't exist on sender. Useful if you will be doing repeatedly and don't want to keep old files. Rich --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "NLUG" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/nlug-talk?hl=en -~----------~----~----~----~------~----~------~--~---
