#!/bin/sh
#
# $Header: deleteUser.sh 06-oct-2005.12:00:51 prayarot Exp $
#
# deleteUser.sh
#
# Copyright (c) 2005, Oracle. All rights reserved.  
#
#    NAME
#      deleteUser.sh - <one-line expansion of the name>
#
#    DESCRIPTION
#      <short description of component this file declares/defines>
#
#    NOTES
#      <other useful comments, qualifications, etc.>
#
#    MODIFIED   (MM/DD/YY)
#    prayarot    10/06/05 - prayarot_prov_security
#    pshroff     10/03/05 - Creation
#

export PATH="$PATH:/bin:/usr/bin:/usr/local/bin:/usr/sbin";

user=$1

userdel $user;
