# shell script that will disable accounts of users 
# over disk usage quota for 7 of the last 10 days
#
cat over* | awk '{print $1}' | sort | uniq -c | awk '{if ($1 >= 7) print "disable",$2}' > disabled.sh
sh disabled.sh
rm disabled.sh
