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


# kixed
# call editor processor
# params: File to edit,	Terminal device

if test "$3"
then
    echo "can't find remote file system for file $1"
    echo "press <enter> to continue"
    read key
    exit 0
fi

DIR=`dirname $1`
FILENAME=`basename $1`

cd $DIR
vi $FILENAME <$2 >$2
exit 0
