1234567891011121314151617181920212223242526 |
- #! /bin/sh
- #############################################################################
- #
- # MODULE: GRASS Initialization
- # AUTHOR(S): Justin Hickey - Thailand - jhickey@hpcc.nectec.or.th
- # PURPOSE: The source file for this shell script is in
- # lib/init/grass.src and is the grass startup script. It
- # requires a source file because the definition of GISBASE
- # is not known until compile time and is substituted from the
- # Makefile. Any command line options are passed to Init.sh.
- # COPYRIGHT: (C) 2000-2005 by the GRASS Development Team
- #
- # This program is free software under the GNU General Public
- # License (>=v2). Read the file COPYING that comes with GRASS
- # for details.
- #
- #############################################################################
- trap "echo 'User break!' ; exit" 2 3 9 15
- # Set the GISBASE variable
- GISBASE="GISBASE_VALUE"
- export GISBASE
- exec "$GISBASE/etc/Init.sh" "$@"
|