#!/bin/bash
for i in $(ls -l | awk '$5>1024 {print $8}')
do
mv $i /tmp
done