31 lines
921 B
Bash
31 lines
921 B
Bash
# .bash_profile
|
|
|
|
# Get the aliases and functions
|
|
if [ -f ~/.bashrc ]; then
|
|
. ~/.bashrc
|
|
fi
|
|
|
|
# User specific environment and startup programs
|
|
|
|
PATH=$PATH:$HOME/bin:/opt/ibm/db2/V9.7/bin
|
|
|
|
export PATH
|
|
|
|
export IXCOMPCS=/iXComPCS
|
|
export IMULTILINK=/iMultiLink
|
|
PATH=$PATH:$HOME/bin:/iPlature/ThirdParty/Ice/bin:.:/iPlature/bin
|
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/iPlature/ThirdParty/Ice/lib64:/iPlature/library:/usr/lib64:/iPlature/ThirdParty/db-4.8.30.NC/lib64:/iPlature/ThirdParty/SQLAPI/lib:/iPlature/ThirdParty/expat-2.0.1/lib:/iXComPCS/Library
|
|
export IPLATURE=/iPlature
|
|
export PATH
|
|
export LD_LIBRARY_PATH
|
|
#export LANG=zh_CN.UTF-8
|
|
export LANG=en_US
|
|
export NLS_LANG="SIMPLIFIED CHINESE_CHINA.ZHS16GBK"
|
|
export ICE_CONFIG=/iPlature/conf/icegrid.conf
|
|
export LOG4CPLUSCONFIG=/iPlature/conf/App4Log.cfg
|
|
export LOG4CPLUSLOGPATH=/iPlature/log
|
|
alias bin='cd /iPlature/bin'
|
|
alias log='cd /iPlature/log'
|
|
alias conf='cd /iPlature/conf'
|
|
|