linux 筛选(日期、大小等)文件拷贝

 1、将文件名“是2结尾”的文件拷贝到/tmp目录下

[root@auc-test2 log]# find ./eccs/ -name "*2" -exec cp {} /tmp/ \; 

备注:最后的 \; 这个是不能少的,否则命令执行不成功。

等价于 

[root@auc-test2 log]# find ./eccs/ -name "*2" | xargs -i cp {} /tmp/

相关推荐