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


# kixcopy
# Uses cp command to copy files
# params: Source file ($1), Destination file ($2)

cp $1 $2
exit 0
