Changeset 11367 for fact/tools/Scripts/Logon
- Timestamp:
- 07/13/11 07:36:09 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fact/tools/Scripts/Logon
r10913 r11367 1 1 #!/bin/bash 2 3 2 # This script should be sourced at log on (e.g. in .bashrc) 4 3 5 export REPOS_DIR=$1 4 # Determine absolute path of this script 5 pushd `dirname $0` >/dev/null 6 SCRIPTPATH=`pwd` 7 popd >/dev/null 8 9 # Set environment variables if not yet set 6 10 if [ -z "$DIM_DNS_NODE" ]; then export DIM_DNS_NODE=ihp-pc1.ethz.ch; fi 7 export DIM_HOST_NODE=$HOST.ethz.ch 11 if [ -z "$DIM_HOST_NODE" ]; then export DIM_HOST_NODE=`hostname`.ethz.ch; fi 8 12 if [ -z "$DIMDIR" ]; then export DIMDIR=/usr/local/dim/; fi 9 13 if [ -z "$QWTDIR" ]; then export QWTDIR=/usr/local/qwt/; fi 10 14 if [ -z "$QTDIR" ]; then export QTDIR=/usr/local/Trolltech/Qt-4.6.2; fi 11 15 16 #Set paths 12 17 export LD_LIBRARY_PATH=$QWTDIR/lib:$DIMDIR/linux:$LD_LIBRARY_PATH 13 export PATH=$DIMDIR/linux:$REPOS_DIR/tools/Scripts:$QTDIR/bin:.:$PATH 18 export PATH=$DIMDIR/linux:$SCRIPTPATH:$SCRIPTPATH/../Edd:$PATH 19 export PATH=.:$SCRIPTPATH/../../FADctrl:$QTDIR/bin:$PATH
Note:
See TracChangeset
for help on using the changeset viewer.