#! /bin/sh
#
# One word command to start up pgaccess.tcl
 
# postgresql.env is provided by the package Postgesql
if [ -f /etc/postgresql/postgresql.env ]
then
	. /etc/postgresql/postgresql.env
else
	if [ -z "$PGLIB" ]
	then
		export PGLIB=/usr/lib/postgresql/lib
	fi
fi

wish -f ${PGLIB}/pgaccess.tcl
