: $Workfile:   kixdlt.sh  $ $Revision:   1.0  $
#**********************************************************************#
#*                                                                    *#
#* Copyright (c) 2001 by Sun Microsystems, Inc.                       *#
#* All rights reserved.                                               *#
#*                                                                    *#
#**********************************************************************#


# kixdlt
# Uses rm command to delete files
# params: Source files to be deleted 

DELETEFILES=""

while test "$1"
do
    DELETEFILES="$DELETEFILES $1"
    shift
done

rm $DELETEFILES 
exit 0
