#!/bin/sh
#
# $Header: whdev/2.0/owb/shiphome/owb/bin/unix/gui.sh /main/2 2008/3/06 12:59:40 toshaugh Exp $
#
# gui.sh
#
# Copyright (c) 2008, Oracle.  All rights reserved.  
#
#    NAME
#      gui.sh - Start the Graphical User Interface client
#
#    DESCRIPTION
#      Will invoke the Graphical User Interface client
#
#    MODIFIED   (MM/DD/YY)
#    toshaugh    02/29/08 - Creation
#

umask 0027

if [ $# -gt 0 ] ; then
  if [ $1 = "-verbose" ] ; then
    set -x
  fi
fi

eval `cat setowbenv.sh`

../owb $*

set +x
