1. 将查找到的文件拷贝到指定目录
find ./ | xargs -i  cp {} ~/test
-i 表示 将find 传递给xargs的结果 发在{}中
或者也可以用find ./  '*.txt'  -exec  cp  {}   ~/test/   \;