第一種:[root@usr001 ~]# find ./ -name "tet"|xargs -i mv {} /tmp第二種:[root@usr001 ~]# mv `find /root/ -name ".tar"` /tmp/第三種:[root@usr001 ~]# find ./ -name test.tar.gz -exec mv {} /tmp \;ide