Skip to content

Instantly share code, notes, and snippets.

@jordifebrer
Last active August 29, 2015 14:06
Show Gist options
  • Save jordifebrer/f572d7b0e8f287a343d3 to your computer and use it in GitHub Desktop.
Save jordifebrer/f572d7b0e8f287a343d3 to your computer and use it in GitHub Desktop.
Scala env

Display all envs vars

printenv

Set $JAVA_HOME and $SCALA_HOME (Mac OS X)

export JAVA_HOME=$(/usr/libexec/java_home)
export SCALA_HOME=/usr/local/share/scala
export PATH=${PATH}:$JAVA_HOME/bin:$SCALA_HOME/bin

Display Java, Scala versions

javac -version
scala -version

Scala command line

scala
:q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment