Converted from SVN working copy. Original SVN server no longer available. Original commit date: 2006-05-03, author: sm
18 lines
422 B
Bash
Executable File
18 lines
422 B
Bash
Executable File
#!/bin/bash
|
|
# -------------------------------------
|
|
# Wo ist das Programm hinkopiert
|
|
export PLATZ=/Users/sm/develop/python/platz
|
|
echo $PLATZ
|
|
# -------------------------------------
|
|
|
|
# Umgebung setzen
|
|
export PLATZ_CFG=$PLATZ/cfg
|
|
export PLATZ_LIBS=$PLATZ/libs
|
|
export PLATZ_WORK=$PLATZ/work
|
|
|
|
# Wo sind die Pythonskripte ?
|
|
export PYTHONPATH=$PYTHONPATH:$PLATZ_LIBS
|
|
|
|
# Startet das Sitzplatzprogramm
|
|
python $PLATZ_LIBS/platz.py
|