编写个shell脚本将/home/test 目录下大于10K的文件转移到/tmp目录下#!/bin/shcd /home/testfor i in `ls -l |awk '{if($5>10240) {print $9}}'`do mv $i /tmpdone