Here's the directory structure:

/a/
/a/b/
/a/c/

I want to copy everything, EXCEPT for the /a/c/ subdirectory.

scp -rp myserver:/a .      # this will copy everything

Q: How would I specify a directory to leave out in the scp command ?

link|improve this question
The original motivation is that the subdirectory "/a/c/" is very large (gigabytes), so leaving it out will cut down the copy from minutes to seconds. – russian_spy Sep 28 '11 at 2:51
feedback

migrated from stackoverflow.com Jun 2 '11 at 0:36

This question came from our site for professional and enthusiast programmers.

3 Answers

I don't think you can, but you could use rsync? Something like this:

rsync -a --exclude=a/c myserver:/a .
link|improve this answer
feedback

I think this might be the correct way of doing it so you are still using SSH, I haven't found a way to do it with scp - but using rsync over ssh might resolve it.

rsync -e 'ssh -ax' -av --exclude /a/c myserver:/a .

If you use the -n switch then it will create a dry run of the process:

 rsync -e 'ssh -ax' -av --exclude /a/c -n myserver:/a .
link|improve this answer
feedback

Not the perfect way to do it, but set the sub-directory you want to exclude as read-only. chmod -R 444 /a/c should do the trick. You'll get a "permission denied" error when it tries to write over that directory.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.