#!/bin/sh
cd /home/test
for i in `ls -l |awk '{if($5>10240) {print $9}}'`
do
mv $i /tmp
done
05-11 21:46