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


# kixbrw
# Uses vi command to browse files
# params: $1,$2,... - Files to be browsed

DEVNAME=$1
shift

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

vi -R $BROWSEFILES <$DEVNAME >$DEVNAME
exit 0
