#!/bin/sh
#
# diskusage-1.04 written by www.maske.org
# Copyright 1999 - 2002 www.maske.org
# Use the BSD licensing for licensing
# Questions or suggestions? support@maske.org
#
echo " "
echo "------------------------------------------------------------------------------------"
echo "This is your diskusage in human-readable format, for your mail and home directories."
echo "------------------------------------------------------------------------------------"
du -sh $HOME $MAIL
echo "------------------------------------------------------------------------------------"
du -shc $MAIL $HOME | grep total
echo " "
exit 0
