有没有办法可以抑制在过程中原点发生变化时的警告rsync
?
$ rsync --archive server::somemodule/ /dest/dir
rsync: read errors mapping "/somefile" (in somemodule): No data available (61)
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1532) [generator=3.0.6]
确实,在运行过程somefile
中发生了变化rsync
,但我不在乎,我希望忽略此错误。例如find
有 -ignore_readdir_race
标志,是否有类似的东西rsync
?