/ Published in: Bash
Copy a directory (and subdirectories) without .svn files.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
rsync -r --exclude=.svn source destination Use -a (archive) instead of -r (recursive) because it means -r and more (see the man page).