|
From: Kenneth Brun Nielsen on 2 Apr 2008 11:41 I use 'scp' to copy files from one server to another. Looking deeper into the file structure it is obvious that symbolic links are copied as files (i.e. they do not appear as links on the destination side). How can I solve this? Any alternative to scp? Best regards, Kenneth
From: pk on 2 Apr 2008 12:21 Kenneth Brun Nielsen wrote: > I use 'scp' to copy files from one server to another. > > Looking deeper into the file structure it is obvious that symbolic > links are copied as files (i.e. they do not appear as links on the > destination side). > > How can I solve this? Any alternative to scp? Well, my usual answer is: use rsync, which runs over ssh anyway. Another option is to tar the data across the network, eg usually some variation of (GNU tar) tar -czvf - /src/dir | ssh remotehost "(cd /dst/dir ; tar -xzvf -)" -- All the commands are tested with bash and GNU tools, so they may use nonstandard features. I try to mention when something is nonstandard (if I'm aware of that), but I may miss something. Corrections are welcome.
|
Pages: 1 Prev: Measuring response time from a URL Next: bash: How to use Here document on the command line |