#!/bin/sh
find /eis -type f -exec du -km {} \;| gawk 'BEGIN { size = 700}; { if ($1 > size) { print $2 " = " $1 " Mb"} }; END {}'
