I want to traverse a filesystem and copy parts of it to another filesystem by creating symlinks instead of copying anything.
rsync
would be ideal if it had something like a --local-copy-via-symlink
option, because rsync
's inclusion/exclusion filters would be the best way to specify what I want to copy.
I know I can do this with a script, but is there a clever command that does this already?