#!/bin/sh

# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.

#
#ident	"$Id: i.appservenv,v 1.3 2004/06/20 10:36:50 sk23366 Exp $"
#

PATH=/usr/bin:/usr/sbin:/bin

while read src dest
do
	sed \
		-e "s,\%CONFIG_HOME\%,$CLIENT_BASEDIR/appserver/config," \
		-e "s,//,/,g" \
		< $src > $dest
done
exit 0
