#!/bin/sh
for user in `ls -1 /home/`
do
if [ -d /home/$user/public_html ]
then
files=`find /home/$user/public_html -type f | wc -l`
if [ $files -gt 200 ]
then
echo "$user - $files files"
fi
fi
done