#!/bin/sh echo "Content-type: text/html" echo "" echo "" echo "
All disk usage including directories in 512 byte blocks:
" # set path at end of following for your home dir /usr/bin/du -s /usr/home/web/c/cgi-wiz 2>&1 echo "File quota in 1K blocks:
" /usr/bin/quota 2>&1 echo ""