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 :)
|
feedback
|
|
Try the following:
or, the slightly shorter:
Note that the | ||||
|
feedback
|
|
No. You could use an alias instead. Put the line
inside your ~/.profile and after the next login, you can call just | |||
|
feedback
|