Hamish Bowman 9d3a6fc297 sync with devbr6: -wx alias, smaller prompt, don't try and clean non-existent .tmp files 16 년 전
..
Makefile 74da27fc0e lib/init: tcl files removed 16 년 전
README 63fb789f39 TclTk removed 16 년 전
clean_temp.c ab082da4e0 Add "const" where appropriate to libgis return types 16 년 전
echo.c 8868d4b686 indent -bad -bap -bbb -br -bli0 -bls -cli0 -ncs -fc1 -hnl -i4 \ 17 년 전
functions.sh 9d3a6fc297 sync with devbr6: -wx alias, smaller prompt, don't try and clean non-existent .tmp files 16 년 전
grass-run.bat db49180dd7 welcome to GRASS 7.0.svn 17 년 전
grass-xterm-mac 63fb789f39 TclTk removed 16 년 전
grass.bat 9d3a6fc297 sync with devbr6: -wx alias, smaller prompt, don't try and clean non-existent .tmp files 16 년 전
grass.src f44f1b3199 removed superfluous $Id$ tag 17 년 전
grass7.html 9d3a6fc297 sync with devbr6: -wx alias, smaller prompt, don't try and clean non-existent .tmp files 16 년 전
grass_intro.txt db49180dd7 welcome to GRASS 7.0.svn 17 년 전
help_loc_struct.png db49180dd7 welcome to GRASS 7.0.svn 17 년 전
helptext.html 701af9bab5 happy new year 16 년 전
html_browser_mac.sh db49180dd7 welcome to GRASS 7.0.svn 17 년 전
init.bat 9d3a6fc297 sync with devbr6: -wx alias, smaller prompt, don't try and clean non-existent .tmp files 16 년 전
init.sh 9d3a6fc297 sync with devbr6: -wx alias, smaller prompt, don't try and clean non-existent .tmp files 16 년 전
license.txt db49180dd7 welcome to GRASS 7.0.svn 17 년 전
local_proto.h 8868d4b686 indent -bad -bap -bbb -br -bli0 -bls -cli0 -ncs -fc1 -hnl -i4 \ 17 년 전
lock.c 8868d4b686 indent -bad -bap -bbb -br -bli0 -bls -cli0 -ncs -fc1 -hnl -i4 \ 17 년 전
prompt.sh db49180dd7 welcome to GRASS 7.0.svn 17 년 전
run.c 8868d4b686 indent -bad -bap -bbb -br -bli0 -bls -cli0 -ncs -fc1 -hnl -i4 \ 17 년 전
variables.html 63fb789f39 TclTk removed 16 년 전
version.sed db49180dd7 welcome to GRASS 7.0.svn 17 년 전
welcome.txt db49180dd7 welcome to GRASS 7.0.svn 17 년 전

README

o GRASS text mode startup

"grass70" starts up d.m by default (if not first time user).
"grass70 -text" will start up in text mode.
"grass70 -wxpython" or "grass70 -gui" will start up in wxpython mode.

You can use alias "grass70" to "grass70 -text" to use text mode by default.
Or set env var GRASS_GUI=text.


o GRASS non-interactive startup examples

You can startup GRASS non-interactively using some env variables.

LOCATION
GISDBASE
LOCATION_NAME
MAPSET

LOCATION var overrides GISDBASE/LOCATION_NAME/MAPSET location.

ex1)
export LOCATION=/usr/home/grass/usr/data1/loc1/map1
export GISDBASE=/usr/home/grass/usr/data1
export LOCATION_NAME=loc1
export MAPSET=map1

grass70 - # non-interactive startup using LOCATION location

ex2)
export GISDBASE=/usr/home/grass/usr/data1
export LOCATION_NAME=loc1
export MAPSET=map1

grass70 - # non-interactive startup using
# GISDBASE/LOCATION_NAME/MAPSET location


Also, the first argument of grass70 can override these env vars.

ex3)
export LOCATION=/usr/home/grass/usr/data1/loc1/map1
export GISDBASE=/usr/home/grass/usr/data1
export LOCATION_NAME=loc1
export MAPSET=map1

grass70 /usr/home/grass/usr/data2/loc2-1/map1-1
# non-interactive startup using
# /usr/home/grass/usr/data2/loc2-1/map1-1 location

ex4)
export GISDBASE=/usr/home/grass/usr/data1
export LOCATION_NAME=loc1
export MAPSET=map1

grass70 /usr/home/grass/usr/data2/loc2-1/map1-1
# non-interactive startup using
# /usr/home/grass/usr/data2/loc2-1/map1-1 location

ex5)
export LOCATION=/usr/home/grass/usr/data1/loc1/map1
export GISDBASE=/usr/home/grass/usr/data1
export LOCATION_NAME=loc1
export MAPSET=map1

grass70 map1-1 # non-interactive startup using
# GISDBASE/LOCATION_NAME/map1-1 location

ex6)
export LOCATION=/usr/home/grass/usr/data1/loc1/map1
export GISDBASE=/usr/home/grass/usr/data1
export LOCATION_NAME=loc1
export MAPSET=map1

grass70 loc2-1/map1-1
# non-interactive startup using
# GISDBASE/loc2-1/map1-1 location


Any suggestionss to