-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
54 lines (40 loc) · 947 Bytes
/
.bashrc
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
export LANG="zh_CN.UTF8"
export PS1="\[\033]0;\h$\w\007\033[36m\]\u@\h[\d \t] \[\033[33m\]\w\[\033[0m\]\n$ "
PATH_APPEND=/sbin
export PATH=$PATH:$PATH_APPEND
export CPATH=/usr/include:/include
export LIBRARY_PATH=/usr/lib64:/usr/lib:/lib64:/lib
export LD_LIBRARY_PATH=/usr/lib64:/usr/lib:/lib64:/lib
if [ -f $HOME/.bash_alise ]; then
source $HOME/.bash_alise
fi
if [ -f $HOME/.localrc ]; then
source $HOME/.localrc
fi
if [ -f $HOME/.gccrc ]; then
source $HOME/.gccrc
fi
if [ -f $HOME/.gorc ]; then
source $HOME/.gorc
fi
if [ -f $HOME/.mirrorsrc ]; then
source $HOME/.mirrorsrc
fi
if [ -f $HOME/.perlbrewrc ]; then
source $HOME/.perlbrewrc
fi
if [ -f $HOME/.pythonrc ]; then
source $HOME/.pythonrc
fi
if [ -f $HOME/.Rrc ]; then
source $HOME/.Rrc
fi
if [ -f $HOME/.ensembl-veprc ]; then
source $HOME/.ensembl-veprc
fi
export HISTSIZE=1000000