Skip to content

Commit

Permalink
Add env var to .zshrc
Browse files Browse the repository at this point in the history
  • Loading branch information
innerlee committed Jan 21, 2021
1 parent f2d70d9 commit 7708db1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,12 @@ vidnframe () { ffmpeg -i $1 -vcodec copy -f rawvideo -y /dev/null 2>&1 | tr ^M '
lswc () { ls | wc -l }

export JULIA_NUM_THREADS=`nproc`

export ZZROOT=$HOME/app
export PATH=$ZZROOT/bin:$PATH
export LD_LIBRARY_PATH=$ZZROOT/lib:$ZZROOT/lib64:$LD_LIBRARY_PATH

export ZZROOT=$HOME/app
export JLROOT=$ZZROOT/jl
export PATH=$ZZROOT/bin:$JLROOT/bin:$PATH
export LD_LIBRARY_PATH=$ZZROOT/lib:$ZZROOT/lib64:$JLROOT/lib:$JLROOT/lib64:$LD_LIBRARY_PATH

0 comments on commit 7708db1

Please sign in to comment.