使用一条find命令就可以了
find /usr/local/test/ -size +100k -exec mv {} /tmp \;
如果只需要移动文件不移动目录,find /usr/local/test/ -size +100k -type f -exec mv {} /tmp \;