-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.environment
More file actions
executable file
·56 lines (39 loc) · 989 Bytes
/
.environment
File metadata and controls
executable file
·56 lines (39 loc) · 989 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
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
export EDITOR=emacs
export PAGER=less
# History
export HISTSIZE=10000
export SAVEHIST=10000
# Java
#export JAVA_HOME=`/usr/libexec/java_home -v 1.7`
#export PATH=$JAVA_HOME/bin:$PATH
# Scala
export SCALA_HOME=/opt/scala
export PATH=$SCALA_HOME/bin:$PATH
# Spark
export SPARK_HOME=/opt/spark-1.5.0-bin-hadoop2.6
# Ant
export ANT_HOME=/opt/apache-ant
export PATH=$PATH:$ANT_HOME/bin
# Maven
export M2_HOME=/opt/apache-maven
export PATH=$PATH:$M2_HOME/bin
# Gradle
export GRADLE_HOME=/opt/gradle
export GRADLE_OPTS=-Dorg.gradle.daemon=true
export PATH=$GRADLE_HOME/bin:$PATH
# CVS
#export CVS_RSH=ssh
#export CVSROOT=:ext:mikael.brannstrom@cvs.cinnober.com:/cvs/platform/
# Libtool
export SED=/usr/bin/sed
# Latex
export PATH=$PATH:/Library/TeX/texbin
# Macports
export PATH=$PATH:/opt/local/bin
# Google Protobuf compiler
export PATH=$PATH:/opt/protoc/bin
# Anaconda (Python)
#export PATH=$HOME/anaconda/bin:$PATH
# home/bin
export PATH=$HOME/bin:$PATH
export PATH=$PATH:.