-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.bashrc
31 lines (25 loc) · 858 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
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
alias h='history'
alias ls='ls -hF'
alias df='df -h'
alias du='du -h'
export PATH=$HOME/bin:/data/jinhua/ImageMagick-7.0.8-22/bin:$PATH
function R.3.5.3()
{
export R_LIBS=/data/$USER/R:$HOME/R:/services/tools/R/3.5.3-ICC-MKL/lib64/R/library
module load intel/redist/2019 intel/perflibs/64/2019 gcc/5.4.0 R/3.5.3-ICC-MKL
source /data/jinhua/parallel-20190222/bin/env_parallel.bash
alias R='/services/tools/R/3.5.3-ICC-MKL/bin/R -q $@'
}
function R.3.3.1
{
export R_LIBS=/home/$USER/R:/services/tools/R/3.3.1-ICC-MKL/lib64/R/library
module load intel/redist/2019 intel/perflibs/64/2019 gcc/5.4.0 R/3.3.1-ICC-MKL
}