原文链接
遇到一个需求,在cp的过程中需要ignore掉部分文件,发现cp没有自带ignore之类的选项。
比较容易的方式是使用rsync,但是折腾的过程中发现,使用find+cp也是可以达到ignore的目的的:
cd src && find ./ -type f -not -name '12' -not -name '13' -exec cp --parents '{}' './dst/' \;
记录一下,免得需要时又到处找。
posted on 2012-09-03 20:31 悟空不悟空 阅读(1196) 评论(0) 编辑 收藏 举报