最佳答案
我使用以下 bash 脚本只复制某些扩展名的文件(在本例中为 *)。然而,它仍然拷贝了所有的文件。怎么了?
from=$1 to=$2 rsync -zarv --include="*.sh" $from $to