我正在以下命令执行到几个不同的系统:
$ rsync -a -v foo@machine.company.com:'/path/to/first/*.log path/to/second.txt' /dest/folder/0007/.
有时* .log不存在,没关系,但是rsync会产生以下错误:
receiving file list ... rsync: link_stat "/path/to/first/*.log" failed: No such file or directory (2)
done
有什么办法可以抑制这种情况?我能想到的唯一方法是使用包含和排除过滤器,这对我来说似乎是PITA。谢谢!