Re: SCP and symbolic links
- From: pk <pk@xxxxxxxxxx>
- Date: Wed, 02 Apr 2008 18:21:16 +0200
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.
.
- References:
- SCP and symbolic links
- From: Kenneth Brun Nielsen
- SCP and symbolic links
- Prev by Date: Re: Measuring response time from a URL
- Next by Date: Re: While loop slowness
- Previous by thread: SCP and symbolic links
- Index(es):