-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetupCODA3.tcsh
More file actions
executable file
·30 lines (20 loc) · 838 Bytes
/
setupCODA3.tcsh
File metadata and controls
executable file
·30 lines (20 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# CSH Environment setup for CODA 3
# Prune any previous CODA defs in PATH and LD_LIBRARY_PATH
set PATH=`echo $PATH | awk -v RS=: -v ORS=: '/coda/ {next} {print}' | sed 's/:*$//'`
if ($?LD_LIBRARY_PATH == "1") then
set LD_LIBRARY_PATH=`echo $LD_LIBRARY_PATH | awk -v RS=: -v ORS=: '/coda/ {next} {print}' | sed 's/:*$//'`
endif
########################################
# User Specific Configuration
########################################
setenv CODA /site/coda/3.10
source $CODA/.setup
setenv SESSION session
setenv EXPID expid
setenv COOL_HOME ${HOME}/coda3/cool
setenv JAVA_HOME ${HOME}/jdk1.8.0_152
setenv REMEX_CMSG_HOST thishost.jlab.org
setenv REMEX_CMSG_PASSWORD ${EXPID}
setenv CODA_COMPONENT_TABLE ${CODA_CONFIG}/config/${EXPID}/coda_component_table.cfg
# Add config scripts to path
set path = ($CODA_CONFIG $path)