#!/bin/sh
if [ $# -ne 1 ]
then
  echo "Error - usage is as follows:"
  echo "   $0 <username>"
  exit 1
else
  rmdir "`showhashdir $1`"
fi
