linux通过find查找文件并移动到指定文件夹
find path_a -type f -name "some_name" ! -path "**/.@__thumb/*" -print0 | xargs -0 -I {} mv {} path_b
! -path "**/.@__thumb/*" -> 排除某个文件夹下文件
! -path "**/.@__thumb/*"