PDA

View Full Version : Copy recursively but skip a file



JDVyska
April 22nd, 2008, 05:57 PM
Hey guys.

I'm learning my way around Ubuntu, but I'm puzzled on this one. I need to copy a directory (and all contents) with a couple exceptions. I figure I can accomplish this by piping either find or ls results to copy, but I have no idea what the line would look like.

To give an example, let's take something I'm currently trying to do:


sudo cp -r /home/guest /etc/guest.bak

I need the cp to skip "/home/guest/.gvfs". Any thoughts?

scorp123
April 22nd, 2008, 06:04 PM
I need the cp to skip "/home/guest/.gvfs". Any thoughts?
rsync -av --exclude=/home/guest/.gvfs --exclude=/some/other/file/here --exclude=/even/one/more/file/here /path/to/original/files /path/to/where/they/should/go

Please see "man rsync" for the manual and more details.