Linux – Using rsync’s archive flag without copying symbolic links

linuxrsync

As stated in rsync's man page, the -a (archive) switch is equivalent to -rlptgoD. However, I have a situation where I don't want symbolic links retained. Is there any way to keep using the -a switch and prevent copying of symbolic links? I could write -rptgoD every time, but it's a bit long.

Best Answer

Try the following:

rsync -a --no-links ...

or, the slightly shorter:

rsync -a --no-l ...

Note that the --no-links/--no-l switch must come after the -a switch on the command line, otherwise the --links implied by -a is turned back on again.

Related Topic